我試圖使用includes來根據用戶是否登錄創建頁面標題,但雖然顯示了正確的標題,但頁面內容的其餘部分卻沒有。爲什麼我的頁面在包含後忽略其餘內容?
<div class="header">
<?php
if ($login->isUserLoggedIn()) {
include("views/logged_in.php");
exit;
} else {
include("views/not_loggedin.php");
exit;
}
?>
</div>
//Rest of page content goes here
如果我把這個代碼頁面內容後,就基本說明了像一個頁腳,一切工作罰款,但不看我所希望的方式。
因爲你聲明'exit;'!從文檔[退出 - 輸出消息並終止當前的腳本](http://php.net/manual/en/function.exit.php) – Sean
爲什麼我的代碼正確地執行我編碼它做的事情? –