在開發過程中,往往因為表單出錯而返回頁面的時候填寫的資訊都不見了,為了支援頁面回跳,可以透過兩種方法實現。
第一,使用Header方法設定訊息頭Cache-control
header('Cache-control: private, must-revalidate'); //支持页面回跳
第二,使用session_cache_limiter方法
//注意要写在session_start方法之前 session_cache_limiter('private, must-revalidate');
以上是php 支援頁面回退的兩種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!