当前位置: 首页>>代码示例>>PHP>>正文


PHP FileHelper::upload方法代码示例

本文整理汇总了PHP中FileHelper::upload方法的典型用法代码示例。如果您正苦于以下问题:PHP FileHelper::upload方法的具体用法?PHP FileHelper::upload怎么用?PHP FileHelper::upload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FileHelper的用法示例。


在下文中一共展示了FileHelper::upload方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handleFileUpload

 /**
  * Override parent
  */
 function handleFileUpload($fileParameters, $id)
 {
     $filename = NULL;
     if (array_key_exists($this->parameterFile, $_FILES) and array_key_exists('name', $_FILES[$this->parameterFile]) and $_FILES[$this->parameterFile]['name'] != '') {
         $fileHelper = new FileHelper();
         $filename = $fileHelper->upload($this->fileBasename, $id, $_FILES[$this->parameterFile]);
     }
     return $filename;
 }
开发者ID:replicair,项目名称:Replicair-website,代码行数:12,代码来源:PressReviewController.php

示例2: actionIndex

 /**
  * 管理员上传
  */
 function actionIndex()
 {
     $name = $_REQUEST['field'];
     if (!$name) {
         exit;
     }
     $file = new FileHelper();
     $file->uid = Yii::app()->user->id;
     $file->admin = 1;
     $rt = $file->upload();
     if (!$rt) {
         return;
     }
     $new[] = $rt;
     $out = FileHelper::input($new, $name);
     echo $out;
     exit;
 }
开发者ID:hiproz,项目名称:mincms,代码行数:21,代码来源:PluploadController.php

示例3: handleFileUpload

 /**
  * Override parent
  */
 function handleFileUpload($fileParameters, $id)
 {
     $filename = NULL;
     if (array_key_exists($this->parameterFile, $_FILES) and array_key_exists('name', $_FILES[$this->parameterFile]) and $_FILES[$this->parameterFile]['name'] != '') {
         $fileHelper = new FileHelper();
         // hack pour pouvoir avoir la catégorie
         $filename = $this->fileBasename;
         /*if (isset($_POST["object_category"])) {
         			$category = $_POST["object_category"];
         			$filename = $category ."_".self::fileBasename;
         		}*/
         $filename = $fileHelper->upload($filename, $id, $_FILES[$this->parameterFile]);
     }
     return $filename;
 }
开发者ID:replicair,项目名称:Replicair-website,代码行数:18,代码来源:ArticleController.php

示例4: uploadFiles

 /**
 	+++Method Helpers
 */
 private function uploadFiles($model, $modelName)
 {
     $attributes = $this->fileAttributes($model->edit);
     foreach ($attributes as $key => $attribute) {
         $name = InputFactory::getName($key, $attribute);
         $imagePath = FileHelper::upload($model, $modelName, $name, $attribute, true);
         if ($imagePath !== false) {
             $model->{$name} = $imagePath["fileName"];
         }
     }
     return $model;
 }
开发者ID:robriggen,项目名称:lara_admin,代码行数:15,代码来源:models.php


注:本文中的FileHelper::upload方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。