我的 php 应用程序中有几个函数可以传递对 file_get_contents()、file_put_contents 和 getimagesize() 的调用。
问题是,当在 php.ini 中禁用 allow_url_fopen 和 allow_url_include 时,我在这些关键功能上遇到错误。
警告:getimagesize() [function.getimagesize]: URL file-access is disabled in server configuration in /home/content/.../html/_sites/mysite/wp-content/themes/mytheme/functions.php 在线2534
解决这些问题的方法有哪些?
编辑:这些都是与调用 php 脚本位于同一网络服务器上的所有本地文件。是否有读取/写入文件内容的首选方法?