在开发过程中,往往因为表单出错而返回页面的时候填写的信息都不见了,为了支持页面回跳,可以通过两种方法实现。
第一,使用Header方法设置消息头Cache-control
header('Cache-control: private, must-revalidate'); //支持页面回跳
第二,使用session_cache_limiter方法
//注意要写在session_start方法之前 session_cache_limiter('private, must-revalidate');
以上是php 支持页面回退的两种方法的详细内容。更多信息请关注PHP中文网其他相关文章!