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


PHP ArrayHelper::cloneArray方法代碼示例

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


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

示例1: __clone

 public function __clone()
 {
     parent::__clone();
     $this->datasets = ArrayHelper::cloneArray($this->datasets);
     $this->references = ArrayHelper::cloneArray($this->references);
     $this->cubes = ArrayHelper::cloneArray($this->cubes);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:7,代碼來源:MetaModel.php

示例2: __clone

 public function __clone()
 {
     parent::__clone();
     $this->groupByPropertyNames = ArrayHelper::cloneArray($this->groupByPropertyNames);
     $this->subjectPropertyNames = ArrayHelper::cloneArray($this->subjectPropertyNames);
     $this->adjustedGroupByPropertyNames = ArrayHelper::cloneArray($this->adjustedGroupByPropertyNames);
     $this->adjustedSubjectPropertyNames = ArrayHelper::cloneArray($this->adjustedSubjectPropertyNames);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:8,代碼來源:RowFlattenerResultFormatter.php

示例3: __clone

 public function __clone()
 {
     parent::__clone();
     $this->cachedPropertyNameMappings = ArrayHelper::cloneArray($this->cachedPropertyNameMappings);
     if (isset($this->parent)) {
         $this->parent = clone $this->parent;
     }
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:8,代碼來源:AbstractResultFormatter.php

示例4: __clone

 public function __clone()
 {
     parent::__clone();
     $this->points = ArrayHelper::cloneArray($this->points);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:DatasetReference.php

示例5: __clone

 public function __clone()
 {
     parent::__clone();
     $this->segmentLinkIds = ArrayHelper::cloneArray($this->segmentLinkIds);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:ReferenceLink.php

示例6: __clone

 public function __clone()
 {
     parent::__clone();
     $this->keyColumnNames = ArrayHelper::cloneArray($this->keyColumnNames);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:QueryKeyResultFormatter.php

示例7: __clone

 public function __clone()
 {
     parent::__clone();
     $this->queries = ArrayHelper::cloneArray($this->queries);
     $this->sortingConfigurations = ArrayHelper::cloneArray($this->sortingConfigurations);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:6,代碼來源:AbstractQueryRequest.php

示例8: __clone

 public function __clone()
 {
     parent::__clone();
     $this->levels = ArrayHelper::cloneArray($this->levels);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:DimensionMetaData.php

示例9: __clone

 public function __clone()
 {
     parent::__clone();
     $this->columnMappings = ArrayHelper::cloneArray($this->columnMappings);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:ColumnMappingResultFormatter.php

示例10: __clone

 public function __clone()
 {
     parent::__clone();
     $this->dimensions = ArrayHelper::cloneArray($this->dimensions);
     $this->measures = ArrayHelper::cloneArray($this->measures);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:6,代碼來源:CubeMetaData.php

示例11: __clone

 public function __clone()
 {
     parent::__clone();
     $this->amountPropertyNames = ArrayHelper::cloneArray($this->amountPropertyNames);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:PercentCalculatorArrayResultFormatter.php

示例12: __clone

 public function __clone()
 {
     parent::__clone();
     $this->referencedRequests = ArrayHelper::cloneArray($this->referencedRequests);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:CubeQueryRequest.php

示例13: __clone

 public function __clone()
 {
     parent::__clone();
     $this->datasources = ArrayHelper::cloneArray($this->datasources);
 }
開發者ID:ecs-hk,項目名稱:Checkbook,代碼行數:5,代碼來源:EnvironmentMetaModel.php


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