php 支持页面回退的两种方法
程序员文章站
2022-03-26 08:22:45
...
在开发过程中,往往因为表单出错而返回页面的时候填写的信息都不见了,为了支持页面回跳,可以通过两种方法实现。
第一,使用Header方法设置消息头Cache-control
第一,使用Header方法设置消息头Cache-control
header('Cache-control: private, must-revalidate'); //支持页面回跳
第二,使用session_cache_limiter方法
//注意要写在session_start方法之前 session_cache_limiter('private, must-revalidate');
以上就是php 支持页面回退的两种方法的详细内容,更多请关注其它相关文章!
上一篇: Python卸载模块的方法汇总
下一篇: php命名空间概述及定义