$clean_file_name, "public_path" => $this->public_dir . "/".$clean_file_name, "local_path" => $this->target_dir . "/" . $clean_file_name, "mime_type" => $mimeType, "file_size" => $file_size, "file_ext" => $file_ext, "width" => 0, "height" => 0, ];*/ $this->file_name = $file_info['file_name'] ?? '' ; $this->public_path = $file_info['public_path'] ?? '' ; $this->local_path = $file_info['local_path'] ?? '' ; $this->mime_type = $file_info['mime_type'] ?? '' ; $this->file_size = $file_info['file_size'] ?? 0 ; $this->file_ext = $file_info['file_ext'] ?? '' ; $this->width = $file_info['width'] ?? 0 ; $this->height = $file_info['height'] ?? 0 ; } }