php – 显示1k而不是1,000

前端之家收集整理的这篇文章主要介绍了php – 显示1k而不是1,000前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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;
    }
}

这是我的代码,我认为它正在运行.显然不是..有人可以提供帮助,因为我无法弄清楚这一点.

试试这个:

http://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()错了.

原文链接:https://www.f2er.com/php/135769.html

猜你在找的PHP相关文章