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 $array = array ( 'einkauf', 'warenkorb', 'verkauf' ); function warenkorb () { // // Programmcode // } for ( $x = 0; $x < count ( $array ); $x++ ) { if ( function_exists ( $array[$x] ) ) { echo 'function ' . $array[$x] . '() ist existent' . "\n"; } else { echo 'function ' . $array[$x] . '() ist nicht existent' . "\n"; } } ?>
function einkauf() ist nicht existent function warenkorb() ist existent function verkauf() ist nicht existent