今天在用 Codeigniter 上传文件时(部署在 Centos),提示如下错误:
A problem was encountered while attempting to move the up6本文来源gao@dai!ma.com搞$代^码!网7
搞gaodaima代码
loaded file to the final destination.
相关代码:
<br />//目录检测<br />if (!is_dir($cache_path)) mkdir($cache_path, '777');<br />
修改为如下代码既解决问题:
<br />//目录检测<br />if (!is_dir($cache_path)) mkdir($cache_path, 0777);<br />