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


PHP Util::contentMimetype方法代码示例

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


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

示例1: write

 /**
  * Write a file
  *
  * @param   string  $path
  * @param   string  $contents
  * @param   mixed   $config
  * @return  array   file metadata
  */
 public function write($path, $contents, $config = null)
 {
     $config = Util::ensureConfig($config);
     $options = $this->getOptions($path, array('Body' => $contents, 'ContentType' => Util::contentMimetype($contents), 'ContentLength' => Util::contentSize($contents)));
     if ($visibility = $config->get('visibility')) {
         $options['ACL'] = $visibility === AdapterInterface::VISIBILITY_PUBLIC ? 'public-read' : 'private';
     }
     $this->client->putObject($options);
     if ($visibility) {
         $options['visibility'] = $visibility;
     }
     return $this->normalizeObject($options);
 }
开发者ID:luoshulin,项目名称:falcon,代码行数:21,代码来源:AwsS3.php

示例2: getMimetype

 public function getMimetype($path)
 {
     if (!($data = $this->read($path))) {
         return false;
     }
     $data['mimetype'] = Util::contentMimetype($data['contents']);
     return $data;
 }
开发者ID:luoshulin,项目名称:falcon,代码行数:8,代码来源:Zip.php

示例3: getMimetype

 /**
  * Retrieve the mimetype of an object
  *
  * @param   string       $path
  * @return  null|string  mimetype or null on failure
  */
 public function getMimetype($path)
 {
     if (isset($this->cache[$path]['mimetype'])) {
         return $this->cache[$path]['mimetype'];
     }
     if (!($contents = $this->read($path))) {
         return false;
     }
     $mimetype = Util::contentMimetype($contents);
     $this->cache[$path]['mimetype'] = $mimetype;
     return $mimetype;
 }
开发者ID:luoshulin,项目名称:falcon,代码行数:18,代码来源:AbstractCache.php

示例4: update

 /**
  * Update a file
  *
  * @param $path
  * @param $contents
  * @return array|bool
  */
 public function update($path, $contents)
 {
     $location = $this->prefix($path);
     if (($size = file_put_contents($location, $contents, LOCK_EX)) === false) {
         return false;
     }
     return array('path' => $path, 'size' => $size, 'contents' => $contents, 'mimetype' => Util::contentMimetype($contents));
 }
开发者ID:luoshulin,项目名称:falcon,代码行数:15,代码来源:Local.php


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