3
我想通過命令行啓動:
$ /usr/bin/php -f "index.php?refresh_words=1"
Could not open input file: index.php?refresh_words=1
關當然,沒有?refresh_words=1
它的運行正常。我可以從命令行傳遞$ _GET參數嗎?
我想通過命令行啓動:
$ /usr/bin/php -f "index.php?refresh_words=1"
Could not open input file: index.php?refresh_words=1
關當然,沒有?refresh_words=1
它的運行正常。我可以從命令行傳遞$ _GET參數嗎?
你不能這樣做。使用argv
和argc
。見手冊Command Line Usage部分
http://stackoverflow.com/questions/4186392/php-passing-get-in-linux-command-prompt – Philipp