當前位置: 首頁>>代碼示例>>PHP>>正文


PHP web\UploadedFile類代碼示例

本文整理匯總了PHP中yii\web\UploadedFile的典型用法代碼示例。如果您正苦於以下問題:PHP UploadedFile類的具體用法?PHP UploadedFile怎麽用?PHP UploadedFile使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了UploadedFile類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     $this->preview_input = UploadedFile::getInstance($this, 'preview_input');
     if (!empty($this->preview_input)) {
         $this->preview_input->saveAs($this->preview_picture);
     }
     parent::afterSave($insert, $changedAttributes);
 }
開發者ID:amarchenkov,項目名稱:myCMS,代碼行數:8,代碼來源:Article.php

示例2: uploadYii2UloadFile

 /**
  * copy Yii2 UploadedFile
  * @param UploadedFile $upoadFile 
  * @return boolean
  * @throws NotFoundHttpException
  */
 public function uploadYii2UloadFile(UploadedFile $upoadFile)
 {
     if (!$upoadFile->saveAs($this->getFilePath())) {
         throw new NotFoundHttpException(Yii::t('d3files', 'The uploaded file does not exist.'));
     }
     return true;
 }
開發者ID:d3yii2,項目名稱:d3files,代碼行數:13,代碼來源:FileHandler.php

示例3: saveData

 /**
  * @param \yii\web\UploadedFile $file
  *
  * @return int
  */
 public function saveData(\yii\web\UploadedFile $file)
 {
     $ext = $file->getExtension();
     $baseName = $file->getBaseName();
     $model = new \metalguardian\fileProcessor\models\File();
     $model->extension = $ext;
     $model->base_name = $baseName;
     $model->save(false);
     return $model->id;
 }
開發者ID:hanterrian,項目名稱:yii2-file-processor-module,代碼行數:15,代碼來源:FileTransfer.php

示例4: save

 /**
  * Saves a file
  * @param \yii\web\UploadedFile $file the file uploaded
  * @param string $name the name of the file. If empty, it will be set to the name of the uploaded file
  * @param array $options to save the file. The options can be any of the following:
  *  - `folder` : whether we should create a subfolder where to save the file
  * @return boolean
  */
 public function save($file, $name, $options = [])
 {
     $folder = ArrayHelper::getValue($options, 'folder');
     $path = $folder ? $this->getBasePath() . DIRECTORY_SEPARATOR . $folder . ltrim($name, DIRECTORY_SEPARATOR) : $this->getBasePath() . DIRECTORY_SEPARATOR . ltrim($name, DIRECTORY_SEPARATOR);
     @mkdir(dirname($path), 0777, true);
     return $file->saveAs($path);
 }
開發者ID:bdart,項目名稱:yii2-aws-s3,代碼行數:15,代碼來源:FileSystemResourceManager.php

示例5: save

 /**
  * Saving file to temporary directory and resize it if needed.
  * @param UploadedFile $file File needs to save.
  * @param integer $maxImageWidth Maximum image width.
  * @param integer $maxImageHeight Maximum image height.
  * @param integer $quality Image quality (for jpeg only).
  * @return string Name of file relative to web root.
  */
 public static function save(UploadedFile $file, $maxImageWidth, $maxImageHeight, $quality)
 {
     $name = self::generateName($file->name);
     $filename = Yii::getAlias('@webroot') . $name;
     $file->saveAs($filename);
     $image = new ImageFile($filename, ['jpegQuality' => $quality]);
     $image->bounds($maxImageWidth, $maxImageHeight);
     $image->save();
     return $name;
 }
開發者ID:dkhlystov,項目名稱:yii2-uploadimage,代碼行數:18,代碼來源:UploadImageHelper.php

示例6: beforeSave

 /**
  * @inherited
  */
 public function beforeSave($insert)
 {
     if ($this->file && $this->file instanceof UploadedFile && parent::beforeSave($insert)) {
         FileHelper::createDirectory(dirname($this->filename));
         return $this->file->saveAs($this->filename, false);
     }
     return false;
 }
開發者ID:kotmonstr,項目名稱:kotmonstr,代碼行數:11,代碼來源:FileModel.php

示例7: uploadLogo

 public static function uploadLogo(UploadedFile $fileInstance, $dir = '', $resizeWidth = null, $resizeHeight = null, $resizeCrop = false)
 {
     $fileName = Upload::getUploadPath($dir) . DIRECTORY_SEPARATOR . 'logo.' . $fileInstance->extension;
     $uploaded = $resizeWidth ? self::copyResizedImage($fileInstance->tempName, $fileName, $resizeWidth, $resizeHeight, $resizeCrop) : $fileInstance->saveAs($fileName);
     if (!$uploaded) {
         throw new HttpException(500, 'Cannot upload file "' . $fileName . '". Please check write permissions.');
     }
     return Upload::getLink($fileName);
 }
開發者ID:thedollarsign,項目名稱:easyii,代碼行數:9,代碼來源:Image.php

示例8: saveFile

 /**
  * @param UploadedFile $file
  */
 public function saveFile(UploadedFile $file)
 {
     if ($file) {
         $folder = \Yii::getAlias('@webroot') . '/uploads/settings/' . $this->key . '/';
         if (is_dir($folder) == false) {
             mkdir($folder, 0755, true);
         }
         $file->saveAs($folder . $file->name);
         Image::thumbnail($folder . $file->name, 160, 90)->save($folder . 'thumb_' . $file->name, ['quality' => 90]);
     }
 }
開發者ID:mops1k,項目名稱:yiimine,代碼行數:14,代碼來源:Settings.php

示例9: upload

 public function upload()
 {
     if ($this->imageFile = UploadedFile::getInstance($this, 'imageFile')) {
         $this->preview = md5($this->imageFile->baseName . time()) . '.' . $this->imageFile->extension;
         $this->imageFile->saveAs(Yii::getAlias('@webroot') . '/' . self::UPLOAD_DIR . $this->preview);
         $this->imageFile = NULL;
         Image::thumbnail('@webroot/' . self::UPLOAD_DIR . $this->preview, 120, 120)->save(Yii::getAlias('@webroot') . '/' . self::UPLOAD_DIR . 'thumb/' . $this->preview, ['quality' => 80]);
     }
 }
開發者ID:Everus,項目名稱:rgk_test,代碼行數:9,代碼來源:Books.php

示例10: upload

 public function upload()
 {
     if ($this->validate()) {
         $this->excelFile->saveAs(Yii::$app->basePath . '/uploads/' . $this->excelFile->baseName . '.' . $this->excelFile->extension);
         return true;
     } else {
         return false;
     }
 }
開發者ID:Polymedia,項目名稱:BI-Platform-v3,代碼行數:9,代碼來源:ExcelUploadForm.php

示例11: upload

 public function upload()
 {
     if ($this->validate()) {
         $this->IMAGE->saveAs('upload/' . $this->IMAGE->baseName . '.' . $this->IMAGE->extension);
         return true;
     } else {
         return false;
     }
 }
開發者ID:adem-team,項目名稱:advanced,代碼行數:9,代碼來源:Barangumumupload.php

示例12: uploadImage

 public function uploadImage()
 {
     if ($this->validate() && $this->imageFile) {
         $this->imageFile->saveAs(Yii::getAlias("@webroot") . '/uploads/' . $this->imageFile->baseName . '.' . $this->imageFile->extension);
         return true;
     } else {
         return false;
     }
 }
開發者ID:RStuffGit,項目名稱:mebel,代碼行數:9,代碼來源:Goods.php

示例13: afterSave

 public function afterSave($insert, $changedAttributes)
 {
     if ($this->scenario == self::SCENARIO_FILE_UPLOAD) {
         $fileName = $this->getFileName();
         FileHelper::createDirectory(dirname($fileName));
         $this->fileUpload->saveAs($fileName);
     }
     parent::afterSave($insert, $changedAttributes);
 }
開發者ID:omnilight,項目名稱:yii2-models,代碼行數:9,代碼來源:File.php

示例14: upload

 public function upload()
 {
     if ($this->validate()) {
         $this->filename = \Yii::$app->security->generateRandomString() . '.' . $this->file->extension;
         $this->file->saveAs("uploads/{$this->filename}");
         return true;
     }
     return false;
 }
開發者ID:eugenrein,項目名稱:koios,代碼行數:9,代碼來源:UploadForm.php

示例15: upload

 public function upload()
 {
     if ($this->validate()) {
         $this->imageFile->saveAs('img/' . $this->imageFile->baseName . '.' . $this->imageFile->extension);
         return true;
     } else {
         return false;
     }
 }
開發者ID:bishabosha,項目名稱:flair,代碼行數:9,代碼來源:UploadForm.php


注:本文中的yii\web\UploadedFile類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。