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


PHP PHPExcel_CachedObjectStorageFactory类代码示例

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


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

示例1: testCacheLastCell

 public function testCacheLastCell()
 {
     $methods = PHPExcel_CachedObjectStorageFactory::getCacheStorageMethods();
     foreach ($methods as $method) {
         PHPExcel_CachedObjectStorageFactory::initialize($method);
         $workbook = new PHPExcel();
         $cells = array('A1', 'A2');
         $worksheet = $workbook->getActiveSheet();
         $worksheet->setCellValue('A1', 1);
         $worksheet->setCellValue('A2', 2);
         $this->assertEquals($cells, $worksheet->getCellCollection(), "Cache method \"{$method}\".");
         PHPExcel_CachedObjectStorageFactory::finalize();
     }
 }
开发者ID:rostrowicki,项目名称:PHPExcel,代码行数:14,代码来源:CellCollectionTest.php

示例2: __construct

 /**
  * Create a new worksheet
  *
  * @param PHPExcel        $pParent
  * @param string        $pTitle
  */
 public function __construct(PHPExcel $pParent = null, $pTitle = 'Worksheet')
 {
     // Set parent and title
     $this->_parent = $pParent;
     $this->setTitle($pTitle, FALSE);
     // setTitle can change $pTitle
     $this->setCodeName($this->getTitle());
     $this->setSheetState(PHPExcel_Worksheet::SHEETSTATE_VISIBLE);
     $this->_cellCollection = PHPExcel_CachedObjectStorageFactory::getInstance($this);
     // Set page setup
     $this->_pageSetup = new PHPExcel_Worksheet_PageSetup();
     // Set page margins
     $this->_pageMargins = new PHPExcel_Worksheet_PageMargins();
     // Set page header/footer
     $this->_headerFooter = new PHPExcel_Worksheet_HeaderFooter();
     // Set sheet view
     $this->_sheetView = new PHPExcel_Worksheet_SheetView();
     // Drawing collection
     $this->_drawingCollection = new ArrayObject();
     // Chart collection
     $this->_chartCollection = new ArrayObject();
     // Protection
     $this->_protection = new PHPExcel_Worksheet_Protection();
     // Default row dimension
     $this->_defaultRowDimension = new PHPExcel_Worksheet_RowDimension(NULL);
     // Default column dimension
     $this->_defaultColumnDimension = new PHPExcel_Worksheet_ColumnDimension(NULL);
     $this->_autoFilter = new PHPExcel_Worksheet_AutoFilter(NULL, $this);
 }
开发者ID:andrelotto,项目名称:EmailMarketing,代码行数:35,代码来源:Worksheet.php

示例3: setCacheStorageMethod

 /**
  * Set the method that should be used for cell cacheing
  *
  * @param string $method Name of the cacheing method
  * @param array $arguments Optional configuration arguments for the cacheing method
  * @return boolean Success or failure
  */
 public static function setCacheStorageMethod($method = PHPExcel_CachedObjectStorageFactory::cache_in_memory, $arguments = array())
 {
     return PHPExcel_CachedObjectStorageFactory::initialize($method, $arguments);
 }
开发者ID:arjunkumar786,项目名称:faces,代码行数:11,代码来源:Settings.php

示例4: __construct

 /**
  * Create a new worksheet
  *
  * @param PHPExcel 		$pParent
  * @param string 		$pTitle
  */
 public function __construct(PHPExcel $pParent = null, $pTitle = 'Worksheet')
 {
     // Set parent and title
     $this->_parent = $pParent;
     $this->setTitle($pTitle);
     $this->setSheetState(PHPExcel_Worksheet::SHEETSTATE_VISIBLE);
     $this->_cellCollection = PHPExcel_CachedObjectStorageFactory::getInstance($this);
     // Set page setup
     $this->_pageSetup = new PHPExcel_Worksheet_PageSetup();
     // Set page margins
     $this->_pageMargins = new PHPExcel_Worksheet_PageMargins();
     // Set page header/footer
     $this->_headerFooter = new PHPExcel_Worksheet_HeaderFooter();
     // Set sheet view
     $this->_sheetView = new PHPExcel_Worksheet_SheetView();
     // Drawing collection
     $this->_drawingCollection = new ArrayObject();
     // Protection
     $this->_protection = new PHPExcel_Worksheet_Protection();
     // Gridlines
     $this->_showGridlines = true;
     $this->_printGridlines = false;
     // Outline summary
     $this->_showSummaryBelow = true;
     $this->_showSummaryRight = true;
     // Default row dimension
     $this->_defaultRowDimension = new PHPExcel_Worksheet_RowDimension(null);
     // Default column dimension
     $this->_defaultColumnDimension = new PHPExcel_Worksheet_ColumnDimension(null);
 }
开发者ID:dapepe,项目名称:tymio,代码行数:36,代码来源:Worksheet.php

示例5: initialize

 public static function initialize($method = self::cache_in_memory, $arguments = array())
 {
     if (!in_array($method, self::$_storageMethods)) {
         return false;
     }
     switch ($method) {
         case self::cache_to_apc:
             if (!function_exists('apc_store')) {
                 return false;
             }
             if (apc_sma_info() === false) {
                 return false;
             }
             break;
         case self::cache_to_memcache:
             if (!function_exists('memcache_add')) {
                 return false;
             }
             break;
         case self::cache_to_wincache:
             if (!function_exists('wincache_ucache_add')) {
                 return false;
             }
             break;
     }
     self::$_storageMethodParameters[$method] = self::$_storageMethodDefaultParameters[$method];
     foreach ($arguments as $k => $v) {
         if (isset(self::$_storageMethodParameters[$method][$k])) {
             self::$_storageMethodParameters[$method][$k] = $v;
         }
     }
     if (is_null(self::$_cacheStorageMethod)) {
         self::$_cacheStorageClass = 'PHPExcel_CachedObjectStorage_' . $method;
         self::$_cacheStorageMethod = $method;
     }
     return true;
 }
开发者ID:Giordano-Bruno,项目名称:GiordanoBruno,代码行数:37,代码来源:CachedObjectStorageFactory.php

示例6: initialize

 /**
  * Identify the cache storage method to use
  *
  * @param	string			$method		Name of the method to use for cell cacheing
  * @param	array of mixed	$arguments	Additional arguments to pass to the cell caching class
  *										when instantiating
  * @return boolean
  **/
 public static function initialize($method = self::cache_in_memory, $arguments = array())
 {
     if (!in_array($method, self::$_storageMethods)) {
         return FALSE;
     }
     $cacheStorageClass = 'PHPExcel_CachedObjectStorage_' . $method;
     if (!call_user_func(array($cacheStorageClass, 'cacheMethodIsAvailable'))) {
         return FALSE;
     }
     self::$_storageMethodParameters[$method] = self::$_storageMethodDefaultParameters[$method];
     foreach ($arguments as $k => $v) {
         if (isset(self::$_storageMethodParameters[$method][$k])) {
             self::$_storageMethodParameters[$method][$k] = $v;
         }
     }
     if (self::$_cacheStorageMethod === NULL) {
         self::$_cacheStorageClass = 'PHPExcel_CachedObjectStorage_' . $method;
         self::$_cacheStorageMethod = $method;
     }
     return TRUE;
 }
开发者ID:karsanrichard,项目名称:HCMP-ALPHA,代码行数:29,代码来源:CachedObjectStorageFactory.php

示例7: finalize

 /**
  * Clear the cache storage
  *
  **/
 public static function finalize()
 {
     self::$_cacheStorageMethod = NULL;
     self::$_cacheStorageClass = NULL;
     self::$_storageMethodParameters = array();
 }
开发者ID:adit-gudhel,项目名称:simpus-dev,代码行数:10,代码来源:CachedObjectStorageFactory.php

示例8: finalize

 /**
  * Clear the cache storage
  *
  **/
 public static function finalize()
 {
     self::$cacheStorageMethod = null;
     self::$cacheStorageClass = null;
     self::$storageMethodParameters = array();
 }
开发者ID:ambient-lounge,项目名称:site,代码行数:10,代码来源:CachedObjectStorageFactory.php


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