1. 程式人生 > >圖片保存到本地

圖片保存到本地

for nbsp ade htm pat trim onu upload 部分

html部分
圖片:<input type="file" name="files[]">

controller部分
$n_path = $_FILES[‘files‘];
$url = $this->actionUpload($n_path);


public function actionUpload($file)
{
$str = "";//防止替換
$url = "./uploads/";//路徑
for ($i = 0; $i < count($file[‘name‘]); $i++) {

move_uploaded_file($file[‘tmp_name‘][$i], $url . $file [‘name‘][$i]);//移動圖片

  $str = $str . ‘,‘ . $url . $file[‘name‘][$i];
}
  return trim($str,‘,‘);
}

圖片保存到本地