2

我怎样才能将 php 代码放在我的页面中执行此操作 - “5 秒后显示链接”。

我想要 php Only 中的整个代码。

前 - 在 php 中:

if(5 Seconds later )
{
`echo'<a href='google.com'>click here ..</a>';`
}
4

3 回答 3

3

你可以睡觉然后输出链接

<?php
    flush(); //make sure all other html is written to the client
    sleep(5);
    echo'<a href="google.com">click here ..</a>';
于 2013-08-30T21:12:41.013 回答
2

用这个 :

sleep(5);
echo 'your link';

这是sleep 方法的文档

于 2013-08-30T21:11:06.747 回答
2

在 php 中:如果(5 秒后)

如果是 5 秒后,那是在第一次请求之后,对吧?

因此,要实现这一点,您应该使用 JS 客户端倒计时(或带有元标记重定向的纯 HTML),并存储time()在会话中,以便您可以检查$_SESSION - time() > 5

于 2013-08-30T21:14:25.847 回答