将数字转换为单词

时间:2016-08-08 03:43:06

标签: php

如何将金额转换为单词?我尝试了这段代码,但是在调用函数时它给了我这个错误。

  

致命错误:调用未定义的函数Convert()

我做错了吗?

if (isset($_REQUEST["generate"])) {
    $amount=$_POST["amount"];
    $amountinword=Convert($amount);
}



<?php

Class Convert {
    var $words = array();
    var $places = array();
    var $amount_in_words;
    var $decimal;
    var $decimal_len;

    function Convert($amount, $currency="Pesos") {
        $this->assign();

        $temp = (string)$amount;
        $pos = strpos($temp,".");
        if ($pos) {
            $temp = substr($temp,0,$pos);
            $this->decimal = strstr((string)$amount,".");
            $this->decimal_len = strlen($this->decimal) - 2;
            $this->decimal = substr($this->decimal,1,$this->decimal_len+1);
        }
        $len = strlen($temp)-1;
        $ctr = 0;
        $arr = array();
        while ($len >= 0) {
            if ($len >= 2) {
                $arr[$ctr++] = substr($temp, $len-2, 3);
                $len -= 3;
            } else {
                $arr[$ctr++] = substr($temp,0,$len+1);
                $len = -1;
            }
        }

        $str = "";
        for ($i=count($arr)-1; $i>=0; $i--) {
            $figure = $arr[$i];
            $sub = array(); $temp="";
            for ($y=0; $y<strlen(trim($figure)); $y++) {
                $sub[$y] = substr($figure,$y,1);
            }
            $len = count($sub);
            if ($len==3) {
                if ($sub[0]!="0") {
                    $temp .= ((strlen($str)>0)?" ":"") . trim($this->words[$sub[0]]) . " Hundred";
                }
                $temp .= $this->processTen($sub[1], $sub[2]);
            } elseif ($len==2) {
                $temp .= $this->processTen($sub[0], $sub[1]);
            } else {
                $temp .= $words[$sub[0]];
            }
            if (strlen($temp)>0) {
                $str .= $temp . $this->places[$i];
            }
        }
        $str .= " " . $currency;
        if ($this->decimal_len>0) {
            $str .= " And " . $this->decimal . "/" . $this->denominator($this->decimal_len+1) .  " Cents";
        }
        $this->amount_in_words = $str;
    }

    function denominator($x) {
        $temp = "1";
        for ($i=1; $i<=$x; $i++) {
            $temp .= "0";
        }
        return $temp;
    }

    function display() {
        echo $this->amount_in_words;
    }

    function processTen($sub1, $sub2) {
        if ($sub1=="0") {
            if ($sub2=="0") {
                return "";
            } else {
                return $this->words[$sub2];
            }
        } elseif ($sub1!="1") {
            if ($sub2!="0") {
                return $this->words[$sub1."0"] . $this->words[$sub2];
            } else {
                return $this->words[$sub1 . $sub2];
            }
        } else {
            if ($sub2=="0") {
                return $this->words["10"];
            } else {
                return $this->words[$sub1 . $sub2];
            }
        }
    }

    function assign() {
        $this->words["1"] = " One";             $this->words["2"] = " Two";
        $this->words["3"] = " Three";       $this->words["4"] = " Four";
        $this->words["5"] = " Five";            $this->words["6"] = " Six";
        $this->words["7"] = " Seven";           $this->words["8"] = " Eight";
        $this->words["9"] = " Nine";

        $this->words["10"] = " Ten";            $this->words["11"] = " Eleven";
        $this->words["12"] = " Twelve";     $this->words["13"] = " Thirten";
        $this->words["14"] = " Fourten";        $this->words["15"] = " Fiften";
        $this->words["16"] = " Sixten";     $this->words["17"] = " Seventen";
        $this->words["18"] = " Eighten";        $this->words["19"] = " Nineten";

        $this->words["20"] = " Twenty";     $this->words["30"] = " Thirty";
        $this->words["40"] = " Forty";      $this->words["50"] = " Fifty";
        $this->words["60"] = " Sixty";      $this->words["70"] = " Seventy";
        $this->words["80"] = " Eighty";     $this->words["90"] = " Ninety";

        $this->places[0] = "";                  $this->places[1] = " Thousand";
        $this->places[2] = " Million";      $this->places[3] = " Billion";
        $this->places[4] = " Thrillion";
    }
}

?>

1 个答案:

答案 0 :(得分:2)

问题

您没有创建Convert的实例,因此PHP认为它是一个功能。

解决方案:

$convert = new Convert($amount);
$convert->display();

另外,您的Convert方法充当构造函数。这是旧版PHP的向后兼容功能。您应该立即将其重命名为__construct,以遵循最佳做法。 From the manual:

  

警告:旧样式构造函数在PHP 7.0中已弃用,将在以后的版本中删除。您应该始终在新代码中使用__construct()

Working example.

另外在旁注 - 您允许将货币作为构造函数方法的参数提供,因此您还应该允许小数点名称(Cents) - 它当前已被硬编码到你的Convert方法。

相关问题