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


PHP UploadedFile::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructor.
  *
  * @param File $file A File instance
  */
 public function __construct(File $file)
 {
     if ($file instanceof UploadedFile) {
         parent::__construct($file->getPathname(), $file->getClientOriginalName(), $file->getClientMimeType(), $file->getClientSize(), $file->getError(), true);
     } else {
         parent::__construct($file->getPathname(), $file->getBasename(), $file->getMimeType(), $file->getSize(), 0, true);
     }
 }
开发者ID:sfblaauw,项目名称:pulsar-uploader,代码行数:13,代码来源:FilesystemFile.php

示例2: __construct

 /**
  * @param Base64EncodedFile $file
  * @param string            $originalName
  * @param null              $mimeType
  * @param null              $size
  */
 public function __construct(Base64EncodedFile $file, $originalName = '', $mimeType = null, $size = null)
 {
     parent::__construct($file->getPathname(), $originalName ?: $file->getFilename(), $mimeType, $size, null, true);
 }
开发者ID:hshn,项目名称:base64-encoded-file,代码行数:10,代码来源:UploadedBase64EncodedFile.php

示例3: __construct

 public function __construct($dir, $originalName)
 {
     $dir = CMSCore::init()->getUploadsDir() . '/' . $dir;
     parent::__construct($dir, $originalName);
 }
开发者ID:GrifiS,项目名称:Symfony2CMS,代码行数:5,代码来源:UploadedFile.php

示例4: __construct

 public function __construct(DupeFile $dupeFile)
 {
     $this->dupeFile = $dupeFile;
     parent::__construct($dupeFile->getPath(), $dupeFile->getOriginalName(), $dupeFile->getMimeType(), $dupeFile->getSize(), null, true);
 }
开发者ID:sandyandi,项目名称:test-uploadedfile-factory,代码行数:5,代码来源:UploadedFilePublisher.php

示例5: __construct

 public function __construct($path = null, $originalName = null, $mimeType = null, $size = null, $error = null, $test = false)
 {
     if ($path !== null) {
         parent::__construct($path, $originalName, $mimeType, $size, $error, $test);
     }
 }
开发者ID:khasinski,项目名称:Iphp,代码行数:6,代码来源:File.php


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