每4秒我刷新一个php页面就会更新时间。 每次发生这种情况时,我都希望将时间发送到另一个页面,但不要离开页面 那令人耳目一新的时间......
以下是一些示例代码:
<?
$target = mktime(10, 0, 0, 0, 0, 0) ;
header('refresh:4; url=timer.php');
$today = (int)(time ());
$siteToReceiveTime = "http://www.nbit.co.za/toriggo/receive.php?time=$today";
print "time in $today seconds";
?>
答案 0 :(得分:1)
有几种方法可以做到这一点...... Ajax是一个 - 可以处理每4秒位,并且能够在不更改页面的情况下发出请求。 另一个选项是php curl ...
答案 1 :(得分:1)
阅读CURL function documentation。您可以让PHP调用CURL从PHP脚本中为您加载页面,而不会干扰您的用户。
答案 2 :(得分:1)
file_get_contents("http://www.nbit.co.za/toriggo/receive.php?time=$today");