我的代码位于插件的 init 函数内,我正在尝试对插件文件夹内的文件进行 file_get_contents() ..
我正在使用...
file_get_contents(ABSPATH.'/wp-content/plugins/myplugin/myfile.html');
不知道为什么我不能使用...
file_get_contents('myfile.html');
您调用 file_get_contents 的 php 文件是直接调用还是需要从另一个脚本调用? 从文件计算出的文件路径,直接运行。 例如:在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');