如何在PHP下调用python脚本文件?

时间:2017-11-16 22:59:47

标签: php python python-2.7

我在同一目录中有两个文件:

index.php
excel.py

我尝试在文件excel.py中调用index.php,如:

$buff = system('python excel.py ' . $handle->file_dst_pathname, $retval);

我使用Windows 10

1 个答案:

答案 0 :(得分:2)

尝试这样,

exec("C:\Python27\python.exe C:\dir...\file.py");

问题是你必须调用C:\Python27\python.exe Python exe文件  在python文件之前。