Anonymous user / 3.138.174.45 Log In Register
?
Wallet: 3.00
Daily Credits:
1.20 / 1.20

PHP Functions Online


floatval

(PHP 4 >= 4.2.0, PHP 5)

floatvalGet float value of a variable

float floatval(mixed $var)

Checkout ? #

Item Description Item Price Your Price
Total

Preview #

${{ variable.param.name }} = {{ variable.param|getValue:variable.form:true }};
{{ call.result}} = ;

Description #

float floatval ( mixed $var )

Gets the float value of var.

Parameters #

var

May be any scalar type. floatval() should not be used on objects, as doing so will emit an E_NOTICE level error and return 1.

Return Values #

The float value of the given variable. Empty arrays return 0, non-empty arrays return 1.

Examples #

Example #1 floatval() Example

<?php
$var 
'122.34343The';
$float_value_of_var floatval($var);
echo 
$float_value_of_var// 122.34343
?>

See Also #