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


PHP Response::compress方法代碼示例

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


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

示例1: _deliverAsset

 /**
  * Sends an asset file to the client
  *
  * @param \Cake\Network\Request $request The request object to use.
  * @param \Cake\Network\Response $response The response object to use.
  * @param string $assetFile Path to the asset file in the file system
  * @param string $ext The extension of the file to determine its mime type
  * @return void
  */
 protected function _deliverAsset(Request $request, Response $response, $assetFile, $ext)
 {
     $compressionEnabled = $response->compress();
     if ($response->type($ext) === $ext) {
         $contentType = 'application/octet-stream';
         $agent = $request->env('HTTP_USER_AGENT');
         if (preg_match('%Opera(/| )([0-9].[0-9]{1,2})%', $agent) || preg_match('/MSIE ([0-9].[0-9]{1,2})/', $agent)) {
             $contentType = 'application/octetstream';
         }
         $response->type($contentType);
     }
     if (!$compressionEnabled) {
         $response->header('Content-Length', filesize($assetFile));
     }
     // $response->cache(filemtime($assetFile), $this->_cacheTime);
     $response->sendHeaders();
     readfile($assetFile);
     if ($compressionEnabled) {
         ob_end_flush();
     }
 }
開發者ID:scherersoftware,項目名稱:cake-cms,代碼行數:30,代碼來源:WidgetAssetFilter.php

示例2: testCompress

 /**
  * Tests the compress method
  *
  * @return void
  */
 public function testCompress()
 {
     $this->skipIf(defined('HHVM_VERSION'), 'HHVM does not implement ob_gzhandler');
     $response = new Response();
     if (ini_get("zlib.output_compression") === '1' || !extension_loaded("zlib")) {
         $this->assertFalse($response->compress());
         $this->markTestSkipped('Is not possible to test output compression');
     }
     $_SERVER['HTTP_ACCEPT_ENCODING'] = '';
     $result = $response->compress();
     $this->assertFalse($result);
     $_SERVER['HTTP_ACCEPT_ENCODING'] = 'gzip';
     $result = $response->compress();
     $this->assertTrue($result);
     $this->assertTrue(in_array('ob_gzhandler', ob_list_handlers()));
     ob_get_clean();
 }
開發者ID:rashmi,項目名稱:newrepo,代碼行數:22,代碼來源:ResponseTest.php

示例3: _deliverCacheFile

 /**
  * Sends an asset file to the client
  *
  * @param \Cake\Network\Request $request The request object to use.
  * @param \Cake\Network\Response $response The response object to use.
  * @param string $assetFile Path to the asset file in the file system
  * @param string $ext The extension of the file to determine its mime type
  * @return void
  */
 protected function _deliverCacheFile(Request $request, Response $response, $file, $ext)
 {
     $compressionEnabled = $response->compress();
     if ($response->type($ext) === $ext) {
         $contentType = 'application/octet-stream';
         $agent = $request->env('HTTP_USER_AGENT');
         if (preg_match('%Opera(/| )([0-9].[0-9]{1,2})%', $agent) || preg_match('/MSIE ([0-9].[0-9]{1,2})/', $agent)) {
             $contentType = 'application/octetstream';
         }
         $response->type($contentType);
     }
     if (!$compressionEnabled) {
         $response->header('Content-Length', filesize($file));
     }
     $content = file_get_contents($file);
     $cacheInfo = $this->extractCacheInfo($content);
     $modifiedTime = filemtime($file);
     $cacheTime = $cacheInfo['time'];
     if (!$cacheTime) {
         $cacheTime = $this->_cacheTime;
     }
     $response->cache($modifiedTime, $cacheTime);
     $response->type($cacheInfo['ext']);
     if (Configure::read('debug') || $this->config('debug')) {
         if ($cacheInfo['ext'] === 'html') {
             $content = '<!--created:' . $modifiedTime . '-->' . $content;
         }
     }
     $response->body($content);
 }
開發者ID:jxav,項目名稱:cakephp-cache,代碼行數:39,代碼來源:CacheFilter.php

示例4: testCompress

 /**
  * Tests the compress method
  *
  * @return void
  */
 public function testCompress()
 {
     if (php_sapi_name() !== 'cli') {
         $this->markTestSkipped('The response compression can only be tested in cli.');
     }
     $response = new Response();
     if (ini_get("zlib.output_compression") === '1' || !extension_loaded("zlib")) {
         $this->assertFalse($response->compress());
         $this->markTestSkipped('Is not possible to test output compression');
     }
     $_SERVER['HTTP_ACCEPT_ENCODING'] = '';
     $result = $response->compress();
     $this->assertFalse($result);
     $_SERVER['HTTP_ACCEPT_ENCODING'] = 'gzip';
     $result = $response->compress();
     $this->assertTrue($result);
     $this->assertTrue(in_array('ob_gzhandler', ob_list_handlers()));
     ob_get_clean();
 }
開發者ID:maitrepylos,項目名稱:nazeweb,代碼行數:24,代碼來源:ResponseTest.php


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