News * Startseite Über SELFPHP Werbung Kontakt Forum * Download * SELFPHP Banner * SELFPHP in Buchform Newsletter * Impressum
<?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) . '<br>'; ?>
integer string double array