如何在PHP中运行时打印Python输出

时间:2016-05-03 13:15:49

标签: php python python-2.7

我想通过php在Web浏览器上运行时显示python脚本的输出。有人可以帮忙吗?? ??

我通过php调用一个简单的python脚本,这里是代码: 的 run.py:

  import os
    import subprocess
    import sys
    import time
    print "<br> Hi from Python"
    sys.stdout.flush()
    for i in range(0,5):
        time.sleep(1)
        print "<br> Hi from Python"
        sys.stdout.flush()

这是php脚本:

<?php
$handle = popen("python run.py ", 'r');
while(!feof($handle)) {
$buffer = fgets($handle);
echo "$buffer<br/>\n";
ob_flush();
}
pclose($handle);
?>

有人可以帮忙吗?? ??

1 个答案:

答案 0 :(得分:0)

使用exec代替

$res = NULL;

exec("python full/path/to/script.py 2>&1" ,$res); //2>&1 @comments.KEK

if(isset($res)){
    foreach($res as $rowRes){
        echo $rowRes;
    }
}