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 = 3; $b = 'Test'; $c = 3.5; $d = array ( 'Banane', 'Birne' ); echo gettype ( $a ) . '<br>'; echo gettype ( $b ) . '<br>'; echo gettype ( $c ) . '<br>'; echo gettype ( $d ); ?>
integer string double array