file_get_contents
程序员文章站
2022-05-25 21:59:10
...
file_get_contents读取网络上的图片文件并由file_put_contesnts写入到服务器本地无法写入问题
默认下selinux是开启的
查看SELinux状态:
1、/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态
SELinux status: enabled
2、getenforce ##也可以用这个命令检查
关闭SELinux:
1、临时关闭(不用重启机器):
setenforce 0 ##设置SELinux 成为permissive模式
##setenforce 1 设置SELinux 成为enforcing模式
2、修改配置文件需要重启机器:
修改/etc/selinux/config 文件
将SELINUX=enforcing改为SELINUX=disabled
重启机器即可
另外,如果以上还是不能解决的话要设置一下目录的权限策略
chcon -R -t httpd_sys_content_t /home/html
AD:真正免费,域名+虚机+企业邮箱=0元
上一篇: php生成excel
下一篇: 从0自学C#09--抽象工厂模式实例
推荐阅读
-
nginx+fastcgi php 使用file_get_contents、curl、fopen读取
-
PHP模拟发送POST请求之三、加强file_get_contents发送POST请求
-
PHP file_get_contents设置超时处理方法
-
关于file_get_contents返回为空或函数不可用的解决方案
-
php读取本地文件常用函数(fopen与file_get_contents)_php基础
-
PHP使用fopen与file_get_contents读取文件实例分享
-
PHP file_get_contents 函数超时的几种解决方法
-
file_get_contents("php://input", "r")实例介绍
-
file_get_contents获取不到网页内容的解决方法
-
php读取本地文件常用函数(fopen与file_get_contents)