定期自动发送变量到 PHP 页面

发布于 2024-11-27 10:37:41 字数 346 浏览 1 评论 0原文

每 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";

?>

Every 4 seconds I am refreshing a php page and it updates the time.
Each time this happens I want to send the time to another page but NOT navigate away from the page
that is refreshing the time...

Below is some sample code:

<?

$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";

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不醒的梦 2024-12-04 10:37:41

有几种方法可以做到这一点......
Ajax 就是其中之一 - 它可以处理每 4 秒的位,并且能够在不更改页面的情况下发出请求。
另一种选择是使用 php curl...

There are a couple of ways that you could do this...
Ajax being one - that could handle the every 4 seconds bit and would be able to make requests without changing the page.
The other option would be with php curl...

最终幸福 2024-12-04 10:37:41

阅读 CURL 函数文档。您可以让 PHP 调用 CURL 从 PHP 脚本加载页面,而不会干扰您的用户。

Read the CURL function documentation. You can have PHP call CURL to load the page for you from the PHP script without interfering with your users.

终弃我 2024-12-04 10:37:41
file_get_contents("http://www.nbit.co.za/toriggo/receive.php?time=$today");
file_get_contents("http://www.nbit.co.za/toriggo/receive.php?time=$today");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文