标签: php wordpress
如何通过自定义插件从主目录上传文件并将其包含到index.php中?
我尝试使用file_get_contents和put_file_contents,但权限被拒绝。
file_get_contents
put_file_contents
$api_file = file_get_contents(getFile()); $include = '<?php include ...?>' . $api_file; file_put_contents(ABSPATH.'/index.php',$include);
也许有一些内置方法可以执行此类操作?