182

我试图找到一种快速的方法来zero decimals从这样的数值中删除:

echo cleanNumber('125.00');
// 125

echo cleanNumber('966.70');
// 966.7

echo cleanNumber(844.011);
// 844.011

是否存在一些优化的方法来做到这一点?

4

26 回答 26

397

$num + 0成功了。

echo 125.00 + 0; // 125
echo '125.00' + 0; // 125
echo 966.70 + 0; // 966.7

在内部,这相当于使用(float)$numor强制转换为浮动,floatval($num)但我发现它更简单。

于 2013-01-25T23:08:43.690 回答
117

你可以只使用这个floatval功能

echo floatval('125.00');
// 125

echo floatval('966.70');
// 966.7

echo floatval('844.011');
// 844.011
于 2013-01-25T23:05:52.407 回答
28

这就是我使用的:

function TrimTrailingZeroes($nbr) {
    return strpos($nbr,'.')!==false ? rtrim(rtrim($nbr,'0'),'.') : $nbr;
}

注意这假设.是小数分隔符。它的优点是它可以处理任意大(或小)的数字,因为没有浮点数。它也不会将数字转换为科学记数法(例如 1.0E-17)。

于 2014-11-17T19:06:10.243 回答
19

简单地添加+到您的字符串变量将导致类型转换为(float)并删除零:

var_dump(+'125.00');     // double(125)
var_dump(+'966.70');     // double(966.7)
var_dump(+'844.011');    // double(844.011)
var_dump(+'844.011asdf');// double(844.011)
于 2014-02-07T13:48:20.240 回答
17

对于来到此站点的每个人都遇到与逗号相同的问题,请更改:

$num = number_format($value, 1, ',', '');

至:

$num = str_replace(',0', '', number_format($value, 1, ',', '')); // e.g. 100,0 becomes 100


如果要删除两个零,则更改为:

$num = str_replace(',00', '', number_format($value, 2, ',', '')); // e.g. 100,00 becomes 100

更多信息:PHP 数字:小数点仅在需要时可见

于 2015-11-15T19:14:23.770 回答
14

如果要删除之前的零位以显示在页面或模板上。

您可以使用sprintf()函数

sprintf('%g','125.00');
//125

‌‌sprintf('%g','966.70');
//966.7

‌‌‌‌sprintf('%g',844.011);
//844.011
于 2017-02-27T22:36:52.167 回答
9

您应该将您的数字转换为浮点数,这将为您执行此操作。

$string = "42.422005000000000000000000000000";
echo (float)$string;

这将是您正在寻找的输出。

42.422005

于 2013-01-25T23:07:49.237 回答
8
$x = '100.10'; 
$x = preg_replace("/\.?0*$/",'',$x); 
echo $x;

There is nothing that can't be fixed with a simple regex ;)

http://xkcd.com/208/

于 2015-02-12T10:52:30.940 回答
6

类型转换为float.

$int = 4.324000;
$int = (float) $int;
于 2016-08-03T13:25:41.797 回答
4

小心添加 +0。

echo number_format(1500.00, 2,".",",")+0;
//1

结果是1。

echo floatval('1,000.00');
// 1

echo floatval('1000.00');
//1000
于 2018-01-19T15:07:08.347 回答
2

由于这个问题是旧的。首先,我对此感到抱歉。

问题是关于数字 xxx.xx 但如果它是 x,xxx.xxxxxx 或差异小数分隔符,例如 xxxx,xxxx,这可能更难找到并从十进制值中删除零位。

/**
 * Remove zero digits from decimal value.
 * 
 * @param string|int|float $number The number can be any format, any where use in the world such as 123, 1,234.56, 1234.56789, 12.345,67, -98,765.43
 * @param string The decimal separator. You have to set this parameter to exactly what it is. For example: in Europe it is mostly use "," instead of ".".
 * @return string Return removed zero digits from decimal value.
 */
function removeZeroDigitsFromDecimal($number, $decimal_sep = '.')
{
    $explode_num = explode($decimal_sep, $number);
    if (is_array($explode_num) && isset($explode_num[count($explode_num)-1]) && intval($explode_num[count($explode_num)-1]) === 0) {
        unset($explode_num[count($explode_num)-1]);
        $number = implode($decimal_sep, $explode_num);
    }
    unset($explode_num);
    return (string) $number;
}

这是测试代码。

$numbers = [
    1234,// 1234
    -1234,// -1234
    '12,345.67890',// 12,345.67890
    '-12,345,678.901234',// -12,345,678.901234
    '12345.000000',// 12345
    '-12345.000000',// -12345
    '12,345.000000',// 12,345
    '-12,345.000000000',// -12,345
];
foreach ($numbers as $number) {
    var_dump(removeZeroDigitsFromDecimal($number));
}


echo '<hr>'."\n\n\n";


$numbers = [
    1234,// 12324
    -1234,// -1234
    '12.345,67890',// 12.345,67890
    '-12.345.678,901234',// -12.345.678,901234
    '12345,000000',// 12345
    '-12345,000000',// -12345
    '12.345,000000',// 12.345
    '-12.345,000000000',// -12.345
    '-12.345,000000,000',// -12.345,000000 STRANGE!! but also work.
];
foreach ($numbers as $number) {
    var_dump(removeZeroDigitsFromDecimal($number, ','));
}
于 2017-12-18T08:22:59.523 回答
1

我发现这个解决方案是最好的:

public function priceFormat(float $price): string
{
    //https://stackoverflow.com/a/14531760/5884988
    $price = $price + 0;
    $split = explode('.', $price);
    return number_format($price, isset($split[1]) ? strlen($split[1]) : 2, ',', '.');
}
于 2019-05-14T10:36:45.643 回答
1
$str = 15.00;
$str2 = 14.70;
echo rtrim(rtrim(strval($str), "0"), "."); //15
echo rtrim(rtrim(strval($str2), "0"), "."); //14.7
于 2017-11-23T15:00:50.140 回答
1

Example 1

$value =81,500.00;
{{rtrim(rtrim(number_format($value,2),0),'.')}}

output

81,500

Example 2

$value=110,763.14;
{{rtrim(rtrim(number_format($value,2),0),'.')}}

output

110,763.14

于 2021-10-06T07:51:01.257 回答
0

复杂的方式但有效:

$num = '125.0100';
$index = $num[strlen($num)-1];
$i = strlen($num)-1;
while($index == '0') {
   if ($num[$i] == '0') {
     $num[$i] = '';
     $i--;
   }

   $index = $num[$i];
}

//remove dot if no numbers exist after dot
$explode = explode('.', $num);
if (isset($explode[1]) && intval($explode[1]) <= 0) {
   $num = intval($explode[0]);
}

echo $num; //125.01

上述解决方案是最佳方式,但如果您想拥有自己的解决方案,您可以使用它。该算法的作用是从字符串的末尾开始并检查其是否为0,如果是,则将其设置为空字符串,然后从后面转到下一个字符,直到最后一个字符> 0

于 2013-01-25T23:17:36.077 回答
0

这是我的解决方案。我想保留添加千位分隔符的能力

    $precision = 5;    
    $number = round($number, $precision);
    $decimals = strlen(substr(strrchr($number, '.'), 1));
    return number_format($number, $precision, '.', ',');
于 2018-09-11T15:57:47.863 回答
0

下面就简单多了

if(floor($num) == $num) {
    echo number_format($num);
} else {
    echo $num;
}
于 2020-02-28T07:50:05.647 回答
0

我使用这个简单的代码:

define('DECIMAL_SEPARATOR', ','); //To prove that it works with different separators than "."

$input = "50,00";

$number = rtrim($input, '0');                // 50,00 --> 50,
$number = rtrim($number, DECIMAL_SEPARATOR); // 50,   --> 50

echo $number;

似乎有点太容易成为真正正确的解决方案,但它对我来说效果很好。在使用它之前,您应该对将获得的输入进行一些测试。

于 2021-08-27T19:23:27.977 回答
0

您可以使用:

print (floatval)(number_format( $Value), 2 ) );    
于 2017-10-20T07:39:36.010 回答
0

简单准确!

function cleanNumber($num){
    $explode = explode('.', $num);
    $count   = strlen(rtrim($explode[1],'0'));
    return bcmul("$num",'1', $count);
}
于 2019-08-28T07:34:14.720 回答
0

那是我的小解决方案......可以包含在一个类中并设置变量

私人 $dsepparator = '.'; // 小数 private $tsepparator= ','; // 千

这可以由构造函数设置并更改为用户语言。

class foo
{
    private $dsepparator;
    private $tsepparator;

    function __construct(){
        $langDatas = ['en' => ['dsepparator' => '.', 'tsepparator' => ','], 'de' => ['dsepparator' => ',', 'tsepparator' => '.']];
        $usersLang = 'de'; // set iso code of lang from user
        $this->dsepparator = $langDatas[$usersLang]['dsepparator'];
        $this->tsepparator = $langDatas[$usersLang]['tsepparator'];
    }

    public function numberOmat($amount, $decimals = 2, $hideByZero = false)
    {
        return ( $hideByZero === true AND ($amount-floor($amount)) <= 0 ) ? number_format($amount, 0, $this->dsepparator, $this->tsepparator) : number_format($amount, $decimals, $this->dsepparator, $this->tsepparator);
    }
    /*
     * $bar = new foo();
     * $bar->numberOmat('5.1234', 2, true); // returns: 5,12
     * $bar->numberOmat('5', 2); // returns: 5,00
     * $bar->numberOmat('5.00', 2, true); // returns: 5
     */

}
于 2016-09-16T14:11:33.537 回答
0
$value = preg_replace('~\.0+$~','',$value);
于 2017-09-25T06:05:33.483 回答
0

这是一个使用 rtrim 的简单单行函数,保存分隔符和小数点:

function myFormat($num,$dec)
 {
 return rtrim(rtrim(number_format($num,$dec),'0'),'.');
 }
于 2019-01-16T11:42:57.677 回答
0

终极解决方案:唯一安全的方法是使用正则表达式:

echo preg_replace("/\.?0+$/", "", 3.0); // 3
echo preg_replace("/\d+\.?\d*(\.?0+)/", "", 3.0); // 3

它适用于任何情况

于 2019-12-10T16:19:31.880 回答
0

您可以尝试以下方法:

rtrim(number_format($coin->current_price,6),'0.')
于 2020-12-27T12:32:25.200 回答
-2

此代码将删除点后的零,并且仅返回两位小数。

$数字=1200.0000;
str_replace('.00', '',number_format($number, 2, '.', ''));

输出为:1200

于 2017-04-03T08:58:38.190 回答