|
今天在用 Codeigniter 上傳文件時(shí)(部署在 Centos),提示如下錯(cuò)誤:
A problem was encountered while attempting to move the uploaded file to the final destination.
相關(guān)代碼:
復(fù)制代碼 代碼如下:
//目錄檢測(cè)
if (!is_dir($cache_path)) mkdir($cache_path, '777');
修改為如下代碼既解決問題:
復(fù)制代碼 代碼如下:
//目錄檢測(cè)
if (!is_dir($cache_path)) mkdir($cache_path, 0777);
php技術(shù):Codeigniter中mkdir創(chuàng)建目錄遇到權(quán)限問題和解決方法,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。