用PHP写一个延迟跳转的代码
以下是一个使用PHP实现延迟跳转的代码示例:
<?php
// 设置延迟时间(秒)
$delay = 5;
// 设置跳转目标URL
$redirectUrl = 'https://example.com';
// 延迟跳转函数
function delayRedirect($delay, $redirectUrl) {
echo "页面将在 {$delay} 秒后跳转...";
echo "<meta http-equiv='refresh' content='{$delay};url={$redirectUrl}'>";
}
// 调用延迟跳转函数
delayRedirect($delay, $redirectUrl);
?>
在上面的代码中,我们使用了一个名为delayRedirect的函数来实现延迟跳转。该函数接受两个参数:延迟时间(以秒为单位)和跳转目标URL。在函数内部,我们首先通过echo语句输出一个提示信息,告诉用户页面将在多少秒后跳转。然后,使用<meta>标签设置http-equiv属性为refresh,并将content属性设置为$delay和$redirectUrl变量的值,以实现跳转。最后,我们调用delayRedirect函数,并传入延迟时间和跳转目标URL作为参数
原文地址: http://www.cveoy.top/t/topic/ivtY 著作权归作者所有。请勿转载和采集!