PHP Velho Oeste 2024

is_real

(PHP 4, PHP 5, PHP 7, PHP 8)

is_realAlias of is_float()

Description

This function is an alias of: is_float().

Warning

This alias was DEPRECATED in PHP 7.4.0, and REMOVED as of PHP 8.0.0.

add a note add a note

User Contributed Notes 1 note

up
5
charlescbe16 at gmail dot com
13 years ago
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
To Top