概述
在巡检优化过程中,发现POST请求至PHP接口处理时,php服务无法读取到请求内容。
通过php.ini开启display_errors = Off
后发现页面输出如下内容:
Notice: file_get_contents(): file created in the system's temporary directory in
/var/www/html/api.php on line 10
Warning: file_get_contents(): Unable to create temporary file, Check permissions in temporary files directory. in
/var/www/html/api.php on line 10
解决办法
由于sys_temp_dir
和upload_tmp_dir
设置的临时目录不存在,mkdir
后修改目录权限即可。
文章来源于互联网:由于POST请求过大导致PHP7无法正常处理解决办法