爲了這一天,我使用這段代碼來定位的public_html來算的文件夾回去,以導入文件:獲取主文件夾
$config_path = array_reverse(explode(DIRECTORY_SEPARATOR , getcwd()));
$co = 0;
foreach($config_path as $val){
if($val == "public_html")
break;
$co += 1;
}
$config_path = '';
if($co != 0){
for($i = 0 ; $i < $co ; $i++){
$config_path .= '../';
}
}
,然後我使用它這樣:
require_once ($config_path.'core/db-class.php');
這段代碼爲我服務還不錯,但我覺得它限制了我,因爲當我使用WAMP我需要的public_html文件夾,這樣
我在尋找一個PHP函數類似 - getMainRoot()
所以我可以這樣做
require_once (getMainRoot().'core/db-class.php');
請記住,該網站一定不能放在服務器文檔根目錄下。通常'__DIR__'常數更有用,因爲它允許相對於當前文件的相對於應用程序的其餘部分而言通常已知的位置進行操作。 – hakre