當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Utilities::getMimeType方法代碼示例

本文整理匯總了PHP中Utilities::getMimeType方法的典型用法代碼示例。如果您正苦於以下問題:PHP Utilities::getMimeType方法的具體用法?PHP Utilities::getMimeType怎麽用?PHP Utilities::getMimeType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Utilities的用法示例。


在下文中一共展示了Utilities::getMimeType方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __call

 public function __call($name, $arguments)
 {
     $file = '';
     foreach ($arguments as $key => $argument) {
         if (empty($argument)) {
             unset($arguments[$key]);
             continue;
         }
         if (!is_array($argument)) {
             continue;
         }
         if (isset($argument['folder'])) {
             $file .= $argument['folder'];
             unset($arguments[$key]);
         }
     }
     if (!empty($arguments)) {
         $filename = array(implode('.', $arguments), $name, self::FILE_EXTENSION);
     } else {
         $filename = array($name, self::FILE_EXTENSION);
     }
     $file .= '/' . implode('.', $filename);
     if (file_exists(CONTRIB_PATH . self::FOLDER . $file)) {
         header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
         header('Etag: ' . md5(file_get_contents(CONTRIB_PATH . self::FOLDER . $file)));
         header('Vary: *');
         header('Last-Modified: ' . gmdate('D, d M Y H:i:s', filemtime(CONTRIB_PATH . self::FOLDER . $file)) . ' GMT');
         header('Content-type: ' . Utilities::getMimeType(self::FILE_EXTENSION));
         echo file_get_contents(CONTRIB_PATH . self::FOLDER . $file);
         exit;
     } else {
         $this->bye();
     }
 }
開發者ID:highfidelity,項目名稱:love,代碼行數:34,代碼來源:Javascript.php

示例2: run

 public function run()
 {
     foreach ($this->_routes as $rule => $conf) {
         if (preg_match($conf[0], Utilities::getMimeType($this->_fileExt), $matches)) {
             require_once CONTRIB_PATH . '/controller/' . $conf[1] . '.php';
             $class = new $conf[1]();
             $method = $this->_fileMode;
             $class->{$method}($this->_fileName, array('folder' => $this->_folderPath));
         }
     }
 }
開發者ID:highfidelity,項目名稱:love,代碼行數:11,代碼來源:Application.php

示例3: outputContent

 protected function outputContent($content, $lastmodified)
 {
     header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
     header('Etag: ' . md5($content));
     header('Vary: *');
     header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $lastmodified) . ' GMT');
     header('Content-type: ' . Utilities::getMimeType($this->getCompressorType()));
     echo $content;
     exit;
 }
開發者ID:highfidelity,項目名稱:love,代碼行數:10,代碼來源:Compressor.php


注:本文中的Utilities::getMimeType方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。