如何在PHP循环中运行Shell脚本

时间:2014-10-10 16:14:56

标签: php bash shell loops infinite

我有一个shell脚本,在php文件中可以获得温度。

<?php 
  $output = shell_exec('sh temperature.sh');
  echo "<pre>$output&deg;C</pre>";
?>

现在它只被推迟一次。 我如何更改php文件以使Value始终是最新的?

由于

1 个答案:

答案 0 :(得分:1)

PHP是服务器端语言。这意味着当它加载时,它就完成了。 如果你想永远更新它,你应该使用ajax调用。

var interval = 1000; // 1 second
function doAjax() {
    $.ajax({
        type: 'GET',
        url: 'get_what_you_want.php',
        data: {},
        dataType: 'json',
        success: function (data) {
                $('body').text(data) // or put it on your page    
        },
        complete: function (data) {
                // Schedule the next
                setTimeout(doAjax, interval);
        }
    });
}
setTimeout(doAjax, interval);