我需要帮助以弄清楚如何从php脚本运行python文件。 有人可以让我知道完整的过程,如何从php运行python文件。
感谢您的帮助。
答案 0 :(得分:1)
这是简单的解决方案
/*
<complete path of python> '/usr/local/bin/python3';
<python file> 'test.py';
*/
$file_path = '<complete path of python> <python file>';
$command = escapeshellcmd($file_path);
$output = shell_exec($command);
var_dump($output);
如果您还有其他问题,请告诉我。 编码愉快