如何使用python运行php命令?以及如何在命令行中运行php命令?

时间:2014-04-17 06:33:05

标签: php python

我想使用python代码执行php命令。所以我也想知道如何在命令行中使用php命令

1 个答案:

答案 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。在这里查看教程

How to access PHP with the Command Line on Windows?