php如何實現登入成功跳轉頁面跳轉
首先將判斷使用者是否登入成功,如果登入成功則使用「header()」函數,將http請求頭的「Location」設定為需要跳轉的URL地址,然後使用函數「exit()」結束指令碼即可。
header()函數
header() 用於傳送原生的 HTTP 頭。
header ( string $string [, bool $replace = true [, int $http_response_code ]] ) : void
使用範例
<?php header('Location: http://www.example.com/'); exit; ?>以上就是php如何實現登入成功後跳轉頁面的詳細內容,更多請關注TW511.COM其它相關文章!