本文整理匯總了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);
}
示例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);
}
示例3: __clone
public function __clone()
{
parent::__clone();
$this->cachedPropertyNameMappings = ArrayHelper::cloneArray($this->cachedPropertyNameMappings);
if (isset($this->parent)) {
$this->parent = clone $this->parent;
}
}
示例4: __clone
public function __clone()
{
parent::__clone();
$this->points = ArrayHelper::cloneArray($this->points);
}
示例5: __clone
public function __clone()
{
parent::__clone();
$this->segmentLinkIds = ArrayHelper::cloneArray($this->segmentLinkIds);
}
示例6: __clone
public function __clone()
{
parent::__clone();
$this->keyColumnNames = ArrayHelper::cloneArray($this->keyColumnNames);
}
示例7: __clone
public function __clone()
{
parent::__clone();
$this->queries = ArrayHelper::cloneArray($this->queries);
$this->sortingConfigurations = ArrayHelper::cloneArray($this->sortingConfigurations);
}
示例8: __clone
public function __clone()
{
parent::__clone();
$this->levels = ArrayHelper::cloneArray($this->levels);
}
示例9: __clone
public function __clone()
{
parent::__clone();
$this->columnMappings = ArrayHelper::cloneArray($this->columnMappings);
}
示例10: __clone
public function __clone()
{
parent::__clone();
$this->dimensions = ArrayHelper::cloneArray($this->dimensions);
$this->measures = ArrayHelper::cloneArray($this->measures);
}
示例11: __clone
public function __clone()
{
parent::__clone();
$this->amountPropertyNames = ArrayHelper::cloneArray($this->amountPropertyNames);
}
示例12: __clone
public function __clone()
{
parent::__clone();
$this->referencedRequests = ArrayHelper::cloneArray($this->referencedRequests);
}
示例13: __clone
public function __clone()
{
parent::__clone();
$this->datasources = ArrayHelper::cloneArray($this->datasources);
}