要在 CodeIgniter 4 上傳檔案跟 CodeIgniter 3 不大一樣,這邊來說明一下。
首先一樣可以透過內建的函式產出 form 標籤,form_open_multipart() 裡面帶的是要處理上傳內容的 url:
<?= form_open_multipart('upload/upload') ?>
<input type="file" name="userfile" size="20" />
<br /><br />
<input type="submit" value="upload" />
</form>
use CodeIgniter\Files\File; class Upload extends BaseController { protected $helpers = ['form']; public function index() { //home view } public function upload() { } }
上傳的檔案可以透過 validate() 去驗證內容,上傳的檔案透過 $this->request->getFile() 處理。
$validationRule = [ 'userfile' => [ 'label' => 'Image File', 'rules' => 'uploaded[userfile]' . '|is_image[userfile]' . '|mime_in[userfile,image/jpg,image/jpeg,image/gif,image/png,image/webp]' . '|max_size[userfile,100]' . '|max_dims[userfile,1024,768]', ], ]; if (! $this->validate($validationRule)) { $data = ['errors' => $this->validator->getErrors()]; print_r($data); return; } $img = $this->request->getFile('userfile');
上傳的檔案預設會傳到 WRITEPATH . 'uploads/' 的資料夾,也就是在從根目錄找 writeble/uploads 的資料夾內,如果想要改變上傳的資料夾,可以透過 move() 移動。
$img = $this->request->getFile('userfile'); $img->move('store');
像這樣就會移動到 public/store 的資料夾內。
透過 $img 物件我們可以取得一些上傳檔案的資訊,像是:
$name = $file->getName(); //檔名 $tempfile = $file->getTempName(); //暫時的檔名 $ext = $file->getClientExtension(); //副檔名 $type = $file->getClientMimeType(); //檔案格式
也可以替檔案重新命名,像是這邊可以隨機產一個檔名給上傳的檔案:
$newName = $file->getRandomName(); $file->move(WRITEPATH . 'uploads', $newName);
更多說明可以參考官方文件