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


PHP MIME_Type::getSubType方法代码示例

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


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

示例1: getExtension

 /**
  * Return default MIME-type for the specified extension.
  *
  * @param string $type MIME-type
  *
  * @return string A file extension without leading period.
  */
 function getExtension($type)
 {
     include_once 'MIME/Type.php';
     // Strip parameters and comments.
     $type = MIME_Type::getMedia($type) . '/' . MIME_Type::getSubType($type);
     $extension = array_search($type, $this->extensionToType);
     if ($extension === false) {
         return PEAR::raiseError("Sorry, couldn't determine extension.");
     }
     return $extension;
 }
开发者ID:Dulciane,项目名称:jaws,代码行数:18,代码来源:Extension.php

示例2: isVendor

 /**
  * Is this a vendor MIME type?
  *
  * @note   Vendor types are denoted with a leading 'vnd. in the subtype.
  * @param  string  $type MIME type to check
  * @return boolean true if $type is a vendor type, false otherwise
  * @static
  */
 function isVendor($type)
 {
     if (substr(MIME_Type::getSubType($type), 0, 4) == 'vnd.') {
         return true;
     }
     return false;
 }
开发者ID:chajianku,项目名称:admin_eXtplorer,代码行数:15,代码来源:Type.php

示例3: testGetSubType

 /**
  *
  */
 public function testGetSubType()
 {
     $this->assertEquals('plain', MIME_Type::getSubType('text/plain'));
     $this->assertEquals('ogg', MIME_Type::getSubType('application/ogg'));
     $this->assertEquals('*', MIME_Type::getSubType('*/*'));
     $this->assertEquals('plain', MIME_Type::getSubType('text/plain;a=b'));
 }
开发者ID:Bobsel,项目名称:gn-tic,代码行数:10,代码来源:TypeTest.php


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