dongyun65343 2017-04-07 08:45
浏览 62
已采纳

从PHP调用的bash脚本输出中自动滚动

I have a PHP script which prints the output of a bash script (actually it is an expect script), which looks like this:

<?php

ob_implicit_flush(true);
ob_end_flush();

$cmd = "./expect_script.sh";

$descriptorspec = array(
   0 => array("pipe", "r"),
   1 => array("pipe", "w"),
   2 => array("pipe", "w") 
);

$process = proc_open($cmd, $descriptorspec, $pipes, realpath('./'), array());

echo '<pre>';
if (is_resource($process)) {
    while ($s = fgets($pipes[1])) {
        print $s;

    }
}
echo '</pre>';
?>

So I wanted to get the real time output with automatic scroll at the end of the page with every new line appearance and I found this: printing process output in realtime

Then I added the proposed html code to my script as follows:

<html><head>
<script language="javascript">
var int = self.setInterval("window.scrollBy(0,1000);", 200);
</script>
</head>
<body>

<?php

ob_implicit_flush(true);
ob_end_flush();

$cmd = "./expect_script.sh";

$descriptorspec = array(
   0 => array("pipe", "r"),
   1 => array("pipe", "w"),
   2 => array("pipe", "w") 
);

$process = proc_open($cmd, $descriptorspec, $pipes, realpath('./'), array());

echo '<pre>';
if (is_resource($process)) {
    while ($s = fgets($pipes[1])) {
        print $s;

    }
}
echo '</pre>';
?>

</body>
</html>

However, when script finishes the web browser won't let me browse to the top of the page because it is still scrolling to the bottom.

How shall avoid it so that I can browse once the script is finished?

  • 写回答

1条回答 默认 最新

  • dszsajhd237437 2017-04-07 09:00
    关注

    you are using setInterval to repeat some task and never ask it to stop that.

    you will need to stop setInterval from repeating itself , at the end of your php code add :

    echo '</pre>';
    echo '<script language="javascript">self.clearInterval(int);</script>';
    

    also you will need to close your proc process :

    if (is_resource($process)) {
        while ($s = fgets($pipes[1])) {
            print $s;
    
        }
        proc_close($process);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥15 树莓派5怎么用camera module 3啊
  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥15 Attention is all you need 的代码运行