Startseite Aktuelles News Pressemitteilungen SELFPHP Über SELFPHP Werbung Kontakt Unsere Banner Impressum Qozido Diving Edition Snorkeling Edition SELFPHP Dokumentation PHP-Skripte PHP Befehlsreferenz PHP 5 Praxisbuch PHP Code Snippets SELFPHP in Buchform Anbieterverzeichnis Globale Branchen Webhosting/Server Services Forum RSS-Feeds Newsletter Downloads CronJob-Service Gratis-Video-Lektionen SELFPHP auf Heft-CD Internet Security
<?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"; } ?>
$a ist eine Zahl $b ist eine Zahl $c ist eine Zahl