我在同一目录中有两个文件:
index.php
excel.py
我尝试在文件excel.py
中调用index.php
,如:
$buff = system('python excel.py ' . $handle->file_dst_pathname, $retval);
我使用Windows 10
答案 0 :(得分:2)
尝试这样,
exec("C:\Python27\python.exe C:\dir...\file.py");
问题是你必须调用C:\Python27\python.exe
Python exe文件
在python文件之前。