Query: floatval
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FLOATVAL(3) 1 FLOATVAL(3) floatval - Get float value of a variableSYNOPSISfloat floatval (mixed $var)DESCRIPTIONGets the float value of $var.PARAMETERSo $var - May be any scalar type. floatval(3) should not be used on objects, as doing so will emit an E_NOTICE level error and return 1.RETURN VALUESThe float value of the given variable. Empty arrays return 0, non-empty arrays return 1. Strings will most likely return 0 although this depends on the leftmost characters of the string. The common rules of float casting apply.EXAMPLESExample #1 floatval(3) Example <?php $var = '122.34343The'; $float_value_of_var = floatval($var); echo $float_value_of_var; // 122.34343 ?> Example #2 floatval(3) non-numeric leftmost characters Example <?php $var = 'The122.34343'; $float_value_of_var = floatval($var); echo $float_value_of_var; // 0 ?>SEE ALSOboolval(3), intval(3), strval(3), settype(3), Type juggling. PHP Documentation Group FLOATVAL(3)
Related Man Pages |
---|
gettype(3) - php |
intval(3) - php |
is_int(3) - php |
is_scalar(3) - php |
is_string(3) - php |
Similar Topics in the Unix Linux Community |
---|
stripping leftmost characters from string |
/var size is increasing day by day |
Appending error |
777 files and dir |
Validate numerical |