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-DVD Internet Security
<?PHP $array1 = array ( 'php', 'perl', 'asp' ); $array2 = array_reverse ( $array1 ); $array3 = array_reverse ( $array1, TRUE ); print_r ( $array1 ); print_r ( $array2 ); print_r ( $array3 ); ?>
Array ( [0] => php [1] => perl [2] => asp ) Array ( [0] => asp [1] => perl [2] => php ) Array ( [2] => asp [1] => perl [0] => php )