我怎样才能在我的页面中输入php代码 - “5秒后显示一个链接”。
我只需要php中的整个代码。
ex - 在php:
if(5 Seconds later )
{
`echo'<a href='google.com'>click here ..</a>';`
}
答案 0 :(得分:3)
你可以睡觉然后输出链接
<?php
flush(); //make sure all other html is written to the client
sleep(5);
echo'<a href="google.com">click here ..</a>';
答案 1 :(得分:2)
答案 2 :(得分:2)
在php中:如果(5秒后)
如果是5秒钟后,它是在第一次请求之后,对吗?
因此,要实现这一点,您应该使用JS客户端进行倒计时(或使用元标记重定向的纯HTML),并将time()
存储在会话中,以便您可以检查$_SESSION - time() > 5