本文實例分析了PHP頁面跳躍操作。分享給大家參考,如下:
跳轉
header()為php函數,發送指定指令
html:
<meta http-equiv="Refresh" content="3;url=other.php"/>
執行header時候,並不是立即結束,而是會把頁面執行完畢;在header前面不能有任何輸出,若有開啟輸出緩衝則不提示錯誤,php.ini->output_buffering = 4096|OFF提示跳轉:
header('Location:other.php'); //file_put_contents('bee.txt','execute'); die;封裝的跳轉函數:
header('Refresh:3,Url=other.php'); echo '3s 后跳转'; //由于只是普通页面展示,提示的样式容易定制 die;
與中文網頁相關個人跳法操作實例更多(PPHP)7257頁305頁!