Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 php 运行 python 脚本。
exec("../cgi-bin/form.py", $output); var_dump($output);
我确定路径是正确的,并且 form.py 是可执行的。
这是form.py
#!/usr/bin/env python print "IN form.py'
但是,这会打印出 NULL。我不认为脚本正在执行。我如何确保它是?
您实际上只是在输入文件的位置。您需要告诉 exec 使用该脚本执行 python。
exec("python ../cgi-bin/form.py", $output);