PHP Velho Oeste 2024

is_real

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

is_realAlias de is_float()

Description

Cette fonction est un alias de : is_float().

Avertissement

Cet alias est OBSOLÈTE en PHP 7.4.0, et SUPPRIMÉ à partir de 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