使用file_get_contents()的现有插件文件夹的快捷方式路径是什么?

时间:2010-03-09 07:34:18

标签: php wordpress

我的代码在插件的init函数中,我在我的插件文件夹中的文件上尝试file_get_contents()..

我正在使用......

file_get_contents(ABSPATH.'/wp-content/plugins/myplugin/myfile.html');

不确定为什么我不能只使用......

file_get_contents('myfile.html');

4 个答案:

答案 0 :(得分:0)

myfilemyfile.html?

答案 1 :(得分:0)

试试这个:

file_get_contents('./myfile.html');

答案 2 :(得分:0)

  

你也可以 文件 功能,阅读   具体文件。

请参阅以下链接

link text

答案 3 :(得分:0)

你调用file_get_contents的php文件是直接调用还是需要从另一个脚本调用? 从文件计算的文件路径,直接运行。 例如:在index.php中,我需要'plugins / i / plagin78.php 如果在plugin78.php中调用了file_get_contents('myfile.html'),则myfile.html应该与index.php放在同一类别中,而不是plugin78.php