[Php] Yii2重载\yii\web\UploadedFile::getInstancesByName()以扩大使用范围
先看一个Yii2中UploadedFile的源文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | <?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\web; use Yii; use yii\base\BaseObject; use yii\helpers\ArrayHelper; use yii\helpers\Html; /** * UploadedFile represents the information for an uploaded file. * * You can call [[getInstance()]] to retrieve the instance of an uploaded file, * and then use [[saveAs()]] to save it on the server. * You may also query other information about the file, including [[name]], * [[tempName]], [[type]], [[size]] and [[error]]. * * For more details and usage information on UploadedFile, see the [guide article on handling uploads](guide:input-file-upload). * * @property-read string $baseName Original file base name. This property is read-only. * @property-read string $extension File extension. This property is read-only. * @property-read bool $hasError Whether there is an error with the uploaded file. Check [[error]] for * detailed error code information. This property is read-only. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ class UploadedFile extends BaseObject { /** * @var string the original name of the file being uploaded */ public $name ; /** * @var string the path of the uploaded file on the server. * Note, this is a temporary file which will be automatically deleted by PHP * after the current request is processed. */ public $tempName ; /** * @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. * Instead, use [[\yii\helpers\FileHelper::getMimeType()]] to determine the exact MIME type. */ public $type ; /** * @var int the actual size of the uploaded file in bytes */ public $size ; /** * @var int an error code describing the status of this file uploading. * @see https://secure.php.net/manual/en/features.file-upload.errors.php */ public $error ; /** * @var resource a temporary uploaded stream resource used within PUT and PATCH request. */ private $_tempResource ; private static $_files ; /** * UploadedFile constructor. * * @param array $config name-value pairs that will be used to initialize the object properties */ public function __construct( $config = []) { $this ->_tempResource = ArrayHelper::remove( $config , 'tempResource' ); parent::__construct( $config ); } /** * String output. * This is PHP magic method that returns string representation of an object. * The implementation here returns the uploaded file's name. * @return string the string representation of the object */ public function __toString() { return $this ->name; } /** * Returns an uploaded file for the given model attribute. * The file should be uploaded using [[\yii\widgets\ActiveField::fileInput()]]. * @param \yii\base\Model $model the data model * @param string $attribute the attribute name. The attribute name may contain array indexes. * For example, '[1]file' for tabular file uploading; and 'file[1]' for an element in a file array. * @return null|UploadedFile the instance of the uploaded file. * Null is returned if no file is uploaded for the specified model attribute. * @see getInstanceByName() */ public static function getInstance( $model , $attribute ) { $name = Html::getInputName( $model , $attribute ); return static ::getInstanceByName( $name ); } /** * Returns all uploaded files for the given model attribute. * @param \yii\base\Model $model the data model * @param string $attribute the attribute name. The attribute name may contain array indexes * for tabular file uploading, e.g. '[1]file'. * @return UploadedFile[] array of UploadedFile objects. * Empty array is returned if no available file was found for the given attribute. */ public static function getInstances( $model , $attribute ) { $name = Html::getInputName( $model , $attribute ); return static ::getInstancesByName( $name ); } /** * Returns an uploaded file according to the given file input name. * The name can be a plain string or a string like an array element (e.g. 'Post[imageFile]', or 'Post[0][imageFile]'). * @param string $name the name of the file input field. * @return null|UploadedFile the instance of the uploaded file. * Null is returned if no file is uploaded for the specified name. */ public static function getInstanceByName( $name ) { $files = self::loadFiles(); return isset( $files [ $name ]) ? new static ( $files [ $name ]) : null; } /** * Returns an array of uploaded files corresponding to the specified file input name. * This is mainly used when multiple files were uploaded and saved as 'files[0]', 'files[1]', * 'files[n]'..., and you can retrieve them all by passing 'files' as the name. * @param string $name the name of the array of files * @return UploadedFile[] the array of UploadedFile objects. Empty array is returned * if no adequate upload was found. Please note that this array will contain * all files from all sub-arrays regardless how deeply nested they are. */ public static function getInstancesByName( $name ) { $files = self::loadFiles(); if (isset( $files [ $name ])) { return [ new static ( $files [ $name ])]; } $results = []; foreach ( $files as $key => $file ) { if ( strpos ( $key , "{$name}[" ) === 0) { $results [] = new static ( $file ); } } return $results ; } /** * Cleans up the loaded UploadedFile instances. * This method is mainly used by test scripts to set up a fixture. */ public static function reset() { self:: $_files = null; } /** * Saves the uploaded file. * If the target file `$file` already exists, it will be overwritten. * @param string $file the file path or a path alias used to save the uploaded file. * @param bool $deleteTempFile whether to delete the temporary file after saving. * If true, you will not be able to save the uploaded file again in the current request. * @return bool true whether the file is saved successfully * @see error */ public function saveAs( $file , $deleteTempFile = true) { if ( $this ->hasError) { return false; } $targetFile = Yii::getAlias( $file ); if ( is_resource ( $this ->_tempResource)) { $result = $this ->copyTempFile( $targetFile ); return $deleteTempFile ? @fclose( $this ->_tempResource) : (bool) $result ; } return $deleteTempFile ? move_uploaded_file( $this ->tempName, $targetFile ) : copy ( $this ->tempName, $targetFile ); } /** * Copy temporary file into file specified * * @param string $targetFile path of the file to copy to * @return bool|int the total count of bytes copied, or false on failure * @since 2.0.32 */ protected function copyTempFile( $targetFile ) { $target = fopen ( $targetFile , 'wb' ); if ( $target === false) { return false; } $result = stream_copy_to_stream( $this ->_tempResource, $target ); @fclose( $target ); return $result ; } /** * @return string original file base name */ public function getBaseName() { // https://github.com/yiisoft/yii2/issues/11012 $pathInfo = pathinfo ( '_' . $this ->name, PATHINFO_FILENAME); return mb_substr( $pathInfo , 1, mb_strlen( $pathInfo , '8bit' ), '8bit' ); } /** * @return string file extension */ public function getExtension() { return strtolower ( pathinfo ( $this ->name, PATHINFO_EXTENSION)); } /** * @return bool whether there is an error with the uploaded file. * Check [[error]] for detailed error code information. */ public function getHasError() { return $this ->error != UPLOAD_ERR_OK; } /** * Creates UploadedFile instances from $_FILE. * @return array the UploadedFile instances */ private static function loadFiles() { if (self:: $_files === null) { self:: $_files = []; if (isset( $_FILES ) && is_array ( $_FILES )) { foreach ( $_FILES as $class => $info ) { $resource = isset( $info [ 'tmp_resource' ]) ? $info [ 'tmp_resource' ] : []; self::loadFilesRecursive( $class , $info [ 'name' ], $info [ 'tmp_name' ], $info [ 'type' ], $info [ 'size' ], $info [ 'error' ], $resource ); } } } return self:: $_files ; } /** * Creates UploadedFile instances from $_FILE recursively. * @param string $key key for identifying uploaded file: class name and sub-array indexes * @param mixed $names file names provided by PHP * @param mixed $tempNames temporary file names provided by PHP * @param mixed $types file types provided by PHP * @param mixed $sizes file sizes provided by PHP * @param mixed $errors uploading issues provided by PHP */ private static function loadFilesRecursive( $key , $names , $tempNames , $types , $sizes , $errors , $tempResources ) { if ( is_array ( $names )) { foreach ( $names as $i => $name ) { $resource = isset( $tempResources [ $i ]) ? $tempResources [ $i ] : []; self::loadFilesRecursive( $key . '[' . $i . ']' , $name , $tempNames [ $i ], $types [ $i ], $sizes [ $i ], $errors [ $i ], $resource ); } } elseif ((int) $errors !== UPLOAD_ERR_NO_FILE) { self:: $_files [ $key ] = [ 'name' => $names , 'tempName' => $tempNames , 'tempResource' => $tempResources , 'type' => $types , 'size' => $sizes , 'error' => $errors , ]; } } } |
使用后发现取所有上传的文件,比较接近的就是getInstancesByName($name)了,但是这个接口的参数是必填的,且不能为空,否则会出现找不到上传的文件!
这个用于传统的form表单项目是没有问题的!
但是,在做app开发时,一般是前后端分离的,且前端可能会使用类似于uniapp这样的框架去上传文件,它里面无法构造出像"file[]"这样的键名来表示一次上传多个同name的附件信息,
想来想去,实在没招了,同时又看到此类中的这个实现,无非是加了一层name过滤,那我如果不作过滤,岂不是就能实现获取所有上传的文件了!因此,只要重新写个这个方法的实现就可以了!
鉴于这个类源码的实现我们一般不做修改,所以就新建一个子类来覆盖这个方法吧,开工:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | <?php namespace common\components; class UploadedFile extends \yii\web\UploadedFile { private static $_files ; /** * 获取上传的文件列表(重写父接口, 使其使用范围更广) * @param null $name 为null或''时获取所有上传的文件, 否则只获取指定$name的上传文件 * @return array */ public static function getInstancesByName( $name = null): array { $files = self::loadFiles(); if ( $name && isset( $files [ $name ])) { return [ new static ( $files [ $name ])]; } $results = []; foreach ( $files as $key => $file ) { if (! $name || str_starts_with( $key , "{$name}[" )) { $results [] = new static ( $file ); } } return $results ; } /** * Creates UploadedFile instances from $_FILE. * @return array the UploadedFile instances */ private static function loadFiles() { if (self:: $_files === null) { self:: $_files = []; if (isset( $_FILES ) && is_array ( $_FILES )) { foreach ( $_FILES as $class => $info ) { $resource = isset( $info [ 'tmp_resource' ]) ? $info [ 'tmp_resource' ] : []; self::loadFilesRecursive( $class , $info [ 'name' ], $info [ 'tmp_name' ], $info [ 'type' ], $info [ 'size' ], $info [ 'error' ], $resource ); } } } return self:: $_files ; } /** * Creates UploadedFile instances from $_FILE recursively. * @param string $key key for identifying uploaded file: class name and sub-array indexes * @param mixed $names file names provided by PHP * @param mixed $tempNames temporary file names provided by PHP * @param mixed $types file types provided by PHP * @param mixed $sizes file sizes provided by PHP * @param mixed $errors uploading issues provided by PHP */ private static function loadFilesRecursive( $key , $names , $tempNames , $types , $sizes , $errors , $tempResources ) { if ( is_array ( $names )) { foreach ( $names as $i => $name ) { $resource = isset( $tempResources [ $i ]) ? $tempResources [ $i ] : []; self::loadFilesRecursive( $key . '[' . $i . ']' , $name , $tempNames [ $i ], $types [ $i ], $sizes [ $i ], $errors [ $i ], $resource ); } } elseif ((int) $errors !== UPLOAD_ERR_NO_FILE) { self:: $_files [ $key ] = [ 'name' => $names , 'tempName' => $tempNames , 'tempResource' => $tempResources , 'type' => $types , 'size' => $sizes , 'error' => $errors , ]; } } } |
运行后经过多次测试,发现已经可以实现我说的这个需求了:
就是当调用getInstancesByName() 时,如果传入的name为null或'', 就会去取上传的所有文件,如果指定了name,就能获取指定name的多个文件,与基类实现一致!
因此,此扩展写法还是非常成功的,在不改变基类用法的前提下,增加了使用范围!Very Good!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET10 - 预览版1新功能体验(一)