[PHP] PHP auf Konsole ausführen - Druckversion +- Joopi (https://forum.hermann-splitthoff.de) +-- Forum: Wissenswertes (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=1) +--- Forum: Programmieren (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=6) +--- Thema: [PHP] PHP auf Konsole ausführen (/showthread.php?tid=70) |
PHP auf Konsole ausführen - Joopi - 07-01-2023 Es ist mögich, ein PHP-Script (oder eine PHP-Befehlszeile) auf der Konsole bzw. in einem Shellscript auszuführen. Das ist der Inhalt des PHP-Scripts: PHP-Code: <?php echo "Hallo Welt auf der Konsole!\n"; ?> Folgender Befehl auf der Konsole führt ein PHP-Script aus: Code: php hallo_welt_konsole.php Das Ergebnis ist wie folgt (steht so im PHP-Script): Zitat:Hallo Welt auf der Konsole! |