借助StackOverflow上的人们无价的帮助,我设法从php运行一个bash脚本。现在一切正常,但由于脚本需要几分钟才能结束,我希望看到进展。在bash脚本中有一些printf命令可以输出错误/成功消息。
作为php中的新手,我假设这些消息会在bash脚本中执行时出现。但是尽管脚本已经完成,但我没有得到任何输出。我可以看到创建的文件,并确保脚本完成,但我无法在浏览器中看到php的任何输出。
如何在脚本仍在运行时检查进度?为什么php似乎没有结束?
以下是php脚本。
<?php
echo "<!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd>
<html xmlns=http://www.w3.org/1999/xhtml>
<head>
<meta http-equiv=Content-Type content=text/html; charset=UTF-8 />
<title>Title</title>
<link href=../style.css rel=stylesheet type=text/css>
</head>
<body topmargin=0 leftmargin=0>";
echo '<font color=blue>';
echo '------------------------------------------------------------- <br>';
echo 'Inicio de la generación manual de mapas de olas de calor<br>';
echo 'Este proceso tarda varios minutos<br>';
echo '-------------------------------------------------------------<br>';
echo date('h:i:s') . "\n";
$output = shell_exec('/home/meteo/www/RAMS/olas/generar-mapas.bash');
echo "<pre>".$output."</pre>";
echo '</font>';
echo '</body>';
echo '</html>';
?>
我已经在论坛上阅读了一些有关php,Ajax和jQuery for progress bar的帖子,但我只知道一些非常基本的php。在php中有新手的简单解决方案吗? 谢谢你的帮助
答案 0 :(得分:1)
shell_exec()
阻止子进程完成,请改用popen()
:
$p = popen('/home/meteo/www/RAMS/olas/generar-mapas.bash', 'r');
while(!feof($p)) {
echo fgets($p);
ob_flush();
flush();
}
pclose($p);