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

问题描述 投票:0回答:4

我的代码位于插件的 init 函数内,我正在尝试对插件文件夹内的文件进行 file_get_contents() ..

我正在使用...

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

不知道为什么我不能使用...

file_get_contents('myfile.html');
php wordpress
4个回答
0
投票

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


0
投票

myfile
myfile.html?


0
投票

试试这个:

file_get_contents('./myfile.html');

0
投票

您可以使用

file
功能来读取特定文件。

请参阅文档

© www.soinside.com 2019 - 2024. All rights reserved.