我的代碼是一個插件的初始化函數中,我想我的插件文件夾中的文件的file_get_contents()..什麼是使用file_get_contents()現有插件文件夾的快捷路徑?
我使用...
file_get_contents(ABSPATH.'/wp-content/plugins/myplugin/myfile.html');
不知道爲什麼能「T我只是用...
file_get_contents('myfile.html');
我的代碼是一個插件的初始化函數中,我想我的插件文件夾中的文件的file_get_contents()..什麼是使用file_get_contents()現有插件文件夾的快捷路徑?
我使用...
file_get_contents(ABSPATH.'/wp-content/plugins/myplugin/myfile.html');
不知道爲什麼能「T我只是用...
file_get_contents('myfile.html');
是php文件,你打電話的file_get_contents直接調用或其他腳本需要? 從文件計算的文件路徑,直接運行。 例如:在index.php我需要'plugins/i/plagin78.php 如果在plugin78.php中調用了file_get_contents('myfile.html'),那麼myfile.html應該放在與index.php相同的類別中,不plugin78.php
myfile
或myfile.html?
試試這個:
file_get_contents('./myfile.html');
我認爲,但它仍然給我的問題。我相信它是因爲該文件正從另一個目錄加載到plugins.php中,該目錄成爲當前的相對路徑。 – 2010-03-09 07:44:22
謝謝,我的?並不是關於該方法,而是關於當代碼在wordpress中的插件的init函數內執行時,路徑的唯一顯式關係。 – 2010-03-09 07:52:36
myfile.html(我編輯了問題來糾正) – 2010-03-09 07:36:54