這似乎是世界上最基本的東西,但我不知道PHP。通過變量包含文件
我想在我的頁面上包含一個文件,並且該文件的目錄是在變量內指定的。
<?php
$pageGroup = 'news';
$directory = 'http://localhost:8888/includes/'.$pageGroup.'/rightCol.html';
include($directory);
?>
當我echo
的$directory
的結果,我得到 「http://localhost:8888/includes/news/rightCol.html」,這是完全正確的。然而,當我嘗試在該目錄中包含文件時,什麼也沒有發生。我認爲這與include語法有關。
任何建議表示讚賞。
1.你想不包括文件,但URL 2 。轉動錯誤顯示/報告看看會發生什麼 – 2010-07-30 13:27:13