站长资讯网
最全最丰富的资讯网站

php实现要跳转的页面刷新一次

php实现要跳转的页面刷新一次的方法:首先打开相应的PHP页面代码;然后通过header实现跳转;最后通过“header('refresh:3; url=index.php');”实现跳转并刷新即可。

php实现要跳转的页面刷新一次

本文操作环境:windows7系统、PHP7.1版,DELL G3电脑

php实现要跳转的页面刷新一次

代码如下:

PHP 页面跳转:

// 只是跳转,所以一定要用die();或者exit;终止下一步操作; header('location:index.php'); exit; // 等待3秒,跳转并刷新 header('refresh:3; url=index.php');

相关介绍:

header() 函数向客户端发送原始的 HTTP 报头。

认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 PHP 4 以及更高的版本中,您可以使用输出缓存来解决此问题):

<html> <?php // 结果出错 // 在调用 header() 之前已存在输出 header('Location: http://www.example.com/'); ?>

语法

header(string,replace,http_response_code)

推荐学习:《PHP视频教程》

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号