Variable handling 函数
在线手册:中文 英文
PHP手册

is_real

(PHP 4, PHP 5)

is_realis_float() 的别名

描述

此函数是 is_float() 的别名函数。


Variable handling 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: is_float 的别名

用户评论:

charlescbe16 at gmail dot com (24-Jul-2010 08:53)

is_float — Finds whether a variable is a floatDescriptionbool is_float ( mixed var )

Finds whether the given variable is a float.

example:
<?php
$float
=50.97;
if(
is_float($float))
{
    echo
$float."is a float";
}
else
{
    echo
$float. "is not a float";
}
?>

output:
50.97 is a float