PHP | doubleval() Function
Last Updated :
11 Jul, 2025
Improve
The doubleval() is an inbuilt function in PHP which is used to get a float value of a variable. This function is an alias of floatval().
Syntax:
php
php
doubleval ( $variable_name )Parameters: This function accepts one parameter $variable_name as shown in above syntax. It is a mandatory parameter. This parameter specifies the name of variable that is to be converted. This parameter can be of mixed type example integer, string, etc. Return Value: It returns float value of given variable. Below programs illustrate the use of doubleval() function in PHP: Program 1:
<?php
// PHP program to illustrate
// doubleval() function
$var = '41.68127E3';
$double_value = doubleval($var);
echo $double_value;
?>
<?php
// PHP program to illustrate
// doubleval() function
$var = '41.68127E3';
$double_value = doubleval($var);
echo $double_value;
?>
Output:
Program 2:
41681.27
<?php
// PHP program to illustrate
// doubleval() function
$var = '47.129mln';
$double_value = doubleval($var);
echo $double_value;
?>
<?php
// PHP program to illustrate
// doubleval() function
$var = '47.129mln';
$double_value = doubleval($var);
echo $double_value;
?>
Output:
Related Articles:
Reference:https://www.php.net/manual/en/function.doubleval.php
47.129