PHP Velho Oeste 2024

is_real

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

is_realis_float() işlevinin takma adıdır

Açıklama

Bu işlev is_float() işlevinin takma adıdır.

Uyarı

Bu takma adın kullanımı PHP 7.4.0 itibariyle ÖNERİLMEMEKTE olup PHP 8.0.0'da tamamen KALDIRILMIŞTIR.

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