我已经尝试了所有的php方法在php中运行我的python脚本,如exec(),shell_exec(),system(),popen()等,但没有什么工作,如果尝试从终端的PHP它工作正常< / p>
这是我的剧本
test.php
<?php
$term = system(python /home/user/script.py /input-path/input/ /output-path/output
)>
答案 0 :(得分:0)
试试这个:
<?php
$term = system("/usr/bin/python /home/user/script.py /input-path/input/ /output-path/output"
)>