function restyle_text($input){ $input = number_format($input); $input_count = substr_count($input,','); if($input_count != '0'){ if($input_count == '1'){ return substr($input,+4).'k'; } else if($input_count == '2'){ return substr($input,+8).'mil'; } else if($input_count == '3'){ return substr($input,+12).'bil'; } else { return; } } else { return $input; } }
这是我的代码,我认为它正在运行.显然不是..有人可以提供帮助,因为我无法弄清楚这一点.
试试这个:
原文链接:https://www.f2er.com/php/135769.htmlhttp://codepad.viper-7.com/jfa3uK
function restyle_text($input){ $input = number_format($input); $input_count = substr_count($input,-4).'k'; } else if($input_count == '2'){ return substr($input,-8).'mil'; } else if($input_count == '3'){ return substr($input,-12).'bil'; } else { return; } } else { return $input; } }
基本上,我认为你使用substr()错了.