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


PHP UploadedFile::getRealPath方法代码示例

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


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

示例1: resizeExact

 /**
  * Resize an image to an exact width and height.
  *
  * @param  UploadedFile $file
  * @param  string $width - The image's new width.
  * @param  string $height - The image's new height.
  * @return Imagine\Image
  */
 protected function resizeExact($file, $width, $height)
 {
     return $this->imagine->open($file->getRealPath())->resize(new Box($width, $height));
 }
开发者ID:jaymondigo,项目名称:custommade,代码行数:12,代码来源:Resizer.php

示例2: s3Upload

 /**
  * Upload file to Amazon s3
  *
  * @param  UploadedFile $file
  * @param  String $subdirectory
  * @return Array $uploadedFile
  */
 private function s3Upload($file, $subdirectory)
 {
     $client_original_name = $file->getClientOriginalName();
     $fileName = time() . '_' . $client_original_name;
     $destinationPath = 'uploads/' . $subdirectory;
     $path = $destinationPath . '/' . $fileName;
     $image = Image::make($file->getRealPath());
     $image->resize(600, null, function ($constraint) {
         $constraint->aspectRatio();
         $constraint->upsize();
     });
     $stream = $image->stream();
     $s3 = Storage::disk('s3');
     $s3->put($path, $stream->__toString(), 'public');
     $client = $s3->getDriver()->getAdapter()->getClient();
     $public_url = $client->getObjectUrl(env('S3_BUCKET'), $path);
     $original_name = pathinfo($client_original_name, PATHINFO_FILENAME);
     $uploadedFile = ['original_name' => $original_name, 'file_name' => $fileName, 'public_url' => $public_url];
     return $uploadedFile;
 }
开发者ID:realnerdo,项目名称:blog,代码行数:27,代码来源:ArticlesController.php


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