在PHP中获取Python脚本的结果可以通过以下几种方法:
1. 使用`shell_exec`函数:
$pythonResult = shell_exec('python your_script.py');echo $pythonResult;
2. 使用`exec`函数:
exec('python your_script.py', $output);$pythonResult = end($output);echo $pythonResult;
3. 使用`passthru`函数:
ob_start();passthru('python your_script.py');$pythonResult = ob_get_clean();echo $pythonResult;
4. 使用`proc_open`函数:
$descriptorspec = array(0 => array("pipe", "r"), // 标准输入,子进程从此管道中读取数据1 => array("pipe", "w"), // 标准输出,子进程向此管道中写入数据2 => array("pipe", "w") // 标准错误,用于写入错误输出);$process = proc_open('python your_script.py', $descriptorspec, $pipes);if (is_resource($process)) {fclose($pipes); // 不需要向子进程传递任何输入,所以关闭此管道$pythonResult = stream_get_contents($pipes);fclose($pipes);$errorResult = stream_get_contents($pipes);fclose($pipes);proc_close($process);echo $pythonResult . "\n" . $errorResult;}
请根据您的需求选择合适的方法。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://sigusoft.com/bj/79019.html