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


PHP Filesystem::size方法代码示例

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


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

示例1: alreadyExists

 /**
  * Determine if routes already exists.
  *
  * @return boolean
  */
 protected function alreadyExists()
 {
     $path = $this->getPath();
     if (!$this->is52or51() && $this->files->exists($path)) {
         return $this->files->size($path) !== 504;
     }
     return $this->files->exists($path);
 }
开发者ID:devdk,项目名称:signy,代码行数:13,代码来源:SetAuthRoutesCommand.php

示例2: attach

 /**
  * Attach files to be uploaded.
  *
  * @param array $files
  *
  * @return \Dingo\Api\Dispatcher
  */
 public function attach(array $files)
 {
     foreach ($files as $key => $file) {
         if (is_array($file)) {
             $file = new UploadedFile($file['path'], basename($file['path']), $file['mime'], $file['size']);
         } elseif (is_string($file)) {
             $finfo = finfo_open(FILEINFO_MIME_TYPE);
             $file = new UploadedFile($file, basename($file), finfo_file($finfo, $file), $this->files->size($file));
         } elseif (!$file instanceof UploadedFile) {
             continue;
         }
         $this->uploads[$key] = $file;
     }
     return $this;
 }
开发者ID:jieke360,项目名称:api,代码行数:22,代码来源:Dispatcher.php

示例3: size

 /**
  * Get the file size of a given file.
  *
  * @param string $path
  * @return int 
  * @static 
  */
 public static function size($path)
 {
     return \Illuminate\Filesystem\Filesystem::size($path);
 }
开发者ID:satriashp,项目名称:tour,代码行数:11,代码来源:_ide_helper.php

示例4: size

 /**
  * @param $path
  * @return int
  */
 public function size($path)
 {
     return $this->storage->size($this->storagePath($path));
 }
开发者ID:stevebauman,项目名称:core-helper,代码行数:8,代码来源:StorageService.php

示例5: sendImage

 private function sendImage($path)
 {
     $image = $this->files->get($path);
     return response()->make($image, 200, ['Content-Type' => 'image/png', 'Cache-Control' => 'public, max-age=157788000', 'Content-Length' => $this->files->size($path), 'Last-Modified' => 'Tue, 11 Jan 2000 00:57:26 GMT', 'Expires' => date(DATE_RFC822, strtotime("720 day")), 'Vary' => 'Accept-Encoding']);
 }
开发者ID:yhbyun,项目名称:avatar,代码行数:5,代码来源:Avatar.php

示例6: getFileSize

 /**
  * Get the size of the file located at the given path.
  *
  * @param string $path
  *
  * @return mixed
  */
 protected function getFileSize($path)
 {
     return $this->filesystem->size($path);
 }
开发者ID:phpspider,项目名称:laravel-tricks,代码行数:11,代码来源:ImageUploadService.php


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