我的代码在插件的init函数中,我在我的插件文件夹中的文件上尝试file_get_contents()..
我正在使用......
file_get_contents(ABSPATH.'/wp-content/plugins/myplugin/myfile.html');
不确定为什么我不能只使用......
file_get_contents('myfile.html');
答案 0 :(得分:0)
myfile
或myfile.html?
答案 1 :(得分:0)
试试这个:
file_get_contents('./myfile.html');
答案 2 :(得分:0)
答案 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