我目前有一个看起来像这样的脚本:
<?php
$pattern = '/(?<=\=\s)([0-9]+)(?=\s\=)/';
$total = 0;
$matches;
$handle = @fopen("log.txt", "r");
if ($handle) {
while (($buffer = fgets($handle, 4096)) !== false) {
if(preg_match($pattern, $buffer, $matches))
{
$total += intval($matches[0]);
}
}
if (!feof($handle)) {
echo "Error: unexpected fgets() fail\n";
}
fclose($handle);
}
echo $total;
?>
问题是变量 $total 会经常更新一个全新的数字。我希望页面上的数字自动更新,而无需用户刷新。我认为我可能需要使用 AJAX,但我的 AJAX 很弱。有谁能够帮助我?谢谢!