| |
| * Link führt ins Internet |
|

| |
Befehl | Version | Beschreibung | Beispiel | Ausgabe |
Befehl
| bool is_numeric ( mixed $var ) |
Version
Beschreibung
Beispiel
<?PHP
$a = 0;
$b = 1.14;
$c = '123';
if ( is_numeric ( $a ) )
{
echo '$a ist eine Zahl' . "\n";
}
if ( is_numeric ( $b ) )
{
echo '$b ist eine Zahl' . "\n";
}
if ( is_numeric ( $c ) )
{
echo '$c ist eine Zahl' . "\n";
}
?>
|
Ausgabe
$a ist eine Zahl
$b ist eine Zahl
$c ist eine Zahl
|
|
|
|
|
|
|


|