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 |
---|
floatval(3) - php |
is_float(3) - php |
is_string(3) - php |
openal_source_set(3) - php |
unset(3) - php |
Similar Topics in the Unix Linux Community |
---|
duplicate directories |
Find exact string |
Suse 8 /var Directory |
$_SERVER['DOCUMENT_ROOT'] directs to /var/www not ~/public_html |
If echo statement return false |