PHP Velho Oeste 2024

doubleval

(PHP 4, PHP 5, PHP 7, PHP 8)

doublevalAlias of floatval()

Description

This function is an alias of: floatval().

add a note add a note

User Contributed Notes 2 notes

up
-4
mike at onethingsimple dot com
10 years ago
// 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);
?>
up
-10
Anonymous
13 years ago
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);
?>
To Top