©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
(PHP 4, PHP 5, PHP 7)
doubleval — floatval() 的别名
此函数是 floatval() 的别名。
Note:
此别名是函数改名之后的遗留问题。在 PHP 旧的版本中由于还没有 floatval() 函数,所以你可能需要用到这个 floatval() 的别名函数。
[#1] mike at onethingsimple dot com [2014-03-06 17:34:59]
// The code above will throw an error, I believe you meant to
// echo number_format($mynum) instead of $mynumstr
// variable $mynum holds the value of the string processed by
// doubleval
<?php
$mynumstr = "100,000,000.75";
$mynum = doubleval(str_replace(",","",$mynumstr));
echo "Normal Value:".number_format($mynum);
?>
[#2] Anonymous [2010-09-14 03:30:35]
We can convert the value to normal decimal value...
<?php
$mynumstr = "100,000,000.75";
$mynum = doubleval(str_replace(",","",$mynumstr));
echo "Normal Value:".number_format($mynumstr);
?>