我尝试将数字转换为单词。所以我在这个代码下面使用。但转换时有些数字显示错误。行号47和48中的错误是“未定义的偏移量:-4”。如何解决此错误。我的代码在下面
volume
答案 0 :(得分:1)
问题出在第四行$point = round($number - $no, 2) * 100;
。当减法给出减去输出时,它会引发错误。
尝试这样的事情
$point = round($no - $number, 2) * 100 ;
if($point < 0 ){
$point = $point * (-1);
}
问题解决了。