php怎么设置页面不能后退
时间:2022-02-11 13:45
php设置页面不能后退的方法:1、打开相应的PHP页面;2、通过设置代码“header("Cache-control:no-cache,no-store,must-revalidate");”实现禁止页面后退。 本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑 php怎么设置页面不能后退? PHP header()禁止页面后退 代码如下: 相关介绍: header() 函数向客户端发送原始的 HTTP 报头。 认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 PHP 4 以及更高的版本中,您可以使用输出缓存来解决此问题): 语法 推荐学习:《PHP视频教程》 以上就是php怎么设置页面不能后退的详细内容,更多请关注gxlsystem其它相关文章!header("Cache-control:no-cache,no-store,must-revalidate");
header("Pragma:no-cache");
header("Expires:0");
header('Location:http://www.xxx.com');
<html>
<?php
// 结果出错
// 在调用 header() 之前已存在输出
header('Location: http://www.example.com/');
?>
header(string,replace,http_response_code)