|
|
@ -33,20 +33,12 @@ class UploadedFile extends Object |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $name; |
|
|
|
public $name; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string the original base file name |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $baseName; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var string the path of the uploaded file on the server. |
|
|
|
* @var string the path of the uploaded file on the server. |
|
|
|
* Note, this is a temporary file which will be automatically deleted by PHP |
|
|
|
* Note, this is a temporary file which will be automatically deleted by PHP |
|
|
|
* after the current request is processed. |
|
|
|
* after the current request is processed. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $tempName; |
|
|
|
public $tempName; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string file extension. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $extension; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var string the MIME-type of the uploaded file (such as "image/gif"). |
|
|
|
* @var string the MIME-type of the uploaded file (such as "image/gif"). |
|
|
|
* Since this MIME type is not checked on the server side, do not take this value for granted. |
|
|
|
* Since this MIME type is not checked on the server side, do not take this value for granted. |
|
|
|
* Instead, use [[FileHelper::getMimeType()]] to determine the exact MIME type. |
|
|
|
* Instead, use [[FileHelper::getMimeType()]] to determine the exact MIME type. |
|
|
@ -173,6 +165,22 @@ class UploadedFile extends Object |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* @return string original file base name |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getBaseName() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return pathinfo($this->name, PATHINFO_FILENAME); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @return string file extension |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getExtension() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return strtolower(pathinfo($this->name, PATHINFO_EXTENSION)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @return boolean whether there is an error with the uploaded file. |
|
|
|
* @return boolean whether there is an error with the uploaded file. |
|
|
|
* Check [[error]] for detailed error code information. |
|
|
|
* Check [[error]] for detailed error code information. |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -216,9 +224,7 @@ class UploadedFile extends Object |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
self::$_files[$key] = new static([ |
|
|
|
self::$_files[$key] = new static([ |
|
|
|
'name' => $names, |
|
|
|
'name' => $names, |
|
|
|
'baseName' => pathinfo($names, PATHINFO_FILENAME), |
|
|
|
|
|
|
|
'tempName' => $tempNames, |
|
|
|
'tempName' => $tempNames, |
|
|
|
'extension' => strtolower(pathinfo($names, PATHINFO_EXTENSION)), |
|
|
|
|
|
|
|
'type' => $types, |
|
|
|
'type' => $types, |
|
|
|
'size' => $sizes, |
|
|
|
'size' => $sizes, |
|
|
|
'error' => $errors, |
|
|
|
'error' => $errors, |
|
|
|