1
我想監視我在Web服務器上運行的程序。 我可以繪製進度條,還是隻顯示我的代碼返回的百分比? php腳本產生具有參數的外部代碼。顯示計算進度的方法是什麼?
$Status="rendering...";
$cmd = "cd $rpath && $envopts /home/arm2arm/bin/sph2grid";
$shellcmd=$cmd.$params.'| tee sph2grid.log ';
echo '<strong>'.$shellcmd.'</strong>';
$tmp=shell_exec($shellcmd);
那麼畢竟我顯示日誌文件:
<?php
function ViewLog() {
$string = file_get_contents('../../PHP-Login/tmp/sph2grid.log');
$string = str_replace("\n", '<br>', $string);
echo $string;
}
?>
我可以綁定我的應用程序的輸出一些"<div>"
?
在此先感謝。
Arman。
的百分比不幸的是這裏最難的部分是你放什麼percentComplete.php文件 – 2010-04-19 13:11:54
好,這取決於正在記錄什麼。 PHP文件可以解析日誌並獲取該信息。 – Luis 2010-04-19 13:29:47
感謝您的解決方案。有沒有辦法停止計時器?我應該把計時器放到無窮遠處來阻止它嗎? – Arman 2010-04-19 21:11:25