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