Registriert seit: 14. Apr 2008
3.006 Beiträge
Delphi 2009 Professional
|
AW: Wie erzeugt man $_POST- oder $_GET-Parameter für php.exe
7. Jul 2021, 10:48
Hier ist etwas dazu beschrieben:
https://www.php.net/manual/de/features.commandline.php
Beispiel:
Code:
$ php -f somefile.php a=1 b[]=2 b[]=3
This will set $_GET['a'] to '1' and $_GET['b'] to array('2', '3').
Michael Justin
|