07-01-2023, 10:32
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:
Folgender Befehl auf der Konsole führt ein PHP-Script aus:
Das Ergebnis ist wie folgt (steht so im PHP-Script):
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!