如何完成從絕對路徑向上移動一個文件夾?從絕對路徑向上移動文件夾
文件結構:
/folder/
/folder/config.php
/folder/classes/test.php
從test.php的我想include_once或require_once的config.php文件-file。
我已經試過這在test.php的,但它不工作:
require_once(dirname(__FILE__) . '/../config.php');
錯誤消息: * PHP致命錯誤:require_once():需要「失敗開啓/過長...路徑/班/../ test.php的'*
嗨,「它不工作」從來不是一個好的錯誤描述。你可以添加一些細節 - 會發生什麼,你會得到什麼錯誤?另外,你似乎試圖從'test.php'中包含'test.php',這是沒有意義的? – 2013-03-06 12:15:12
當然,對不起。已更新我的帖子。 – Robert 2013-03-06 12:18:50
@Robert:嘗試我的答案,它適用於我 – 2013-03-06 12:20:10