【函数功能】
该函数用于获取指定数值的浮点数值。
【函数语法】
floatval ($var)
【参数说明】
$var:必需,需要传入的值。
【演示程序】
<?php
/**
* floatval ($var)
* **/
$var = "123.12345dfsd";
var_dump(floatval($var));
echo '<br>';
var_dump(floatval("php1234"));
echo '<br>';
var_dump(floatval("明礼馨德"));
?>
【输出结果】
float(123.12345)
float(0)
float(0)
【特别注意】
1.该函数不能用于数组或者对象。
2.返回浮点型值,若全部为字符串则返回0.
3.字符串若以数字开头,则截取以数字开头的作为返回值。
4.PHP版本:PHP4+。
【原版定义】
/**
* Get float value of a variable
* @link http://www.php.net/manual/en/function.floatval.php
* @param var mixed <p>
* 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.
* </p>
* @return float The float value of the given variable. Empty arrays return 0, non-empty
* arrays return 1.
* </p>
* <p>
* Strings will most likely return 0 although this depends on the
* leftmost characters of the string. The common rules of
* float casting
* apply.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2017/0605/227.html