我目前有一个看起来像这样的脚本:
<?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非常弱。有谁能够帮我?谢谢!
答案 0 :(得分:1)
您必须使用AJAX或仅使用元或javascript刷新。对于coruse,这些刷新会重新加载页面,但可以在没有用户交互的情况下这样做。
答案 1 :(得分:1)
又快又脏:
<html lang="en">
<head>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('jquery', '1.4.2');
google.load('jqueryui', '1.8.8');
</script>
<script type="text/javascript">
$(document).ready(function() {
setInterval('get_counter()', 500);
});
function get_counter()
{
$('.counter').load('PATH_TO_YOUR_PHP_SCRIPT');
}
</script>
</head>
<body>
<h1>Counter</h1>
<div class="counter"></div>
</body>
</html>