| AND OR | string words | *

manual for floatval | search for "floatval"


floatval

(PHP 4 >= 4.2.0, PHP 5)

floatval -- Get float value of a variable

Description

float floatval ( mixed var)

Returns the float value of var.

Var may be any scalar type. You cannot use floatval() on arrays or objects.

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

See also intval(), strval(), settype() and Type juggling.

Manual © 2001-2010 The PHP Group
© 2010 phparadise | go to the top | search phparadise | generated in 0.023 seconds

11 hits by 6 users in the last 30 minutes.