我想使用python代码执行php命令。所以我也想知道如何在命令行中使用php命令
答案 0 :(得分:3)
使用python
import subprocess
# if the script don't need output.
subprocess.call("php /path/to/your/script.php")
# if you want output
proc = subprocess.Popen("php /path/to/your/script.php", shell=True, stdout=subprocess.PIPE)
script_response = proc.stdout.read()
使用控制台
php -r "echo 'a';"
或者
php "path\to\php\file";
如果您使用的是Windows,则需要将php文件夹添加到PATH。在这里查看教程