本文整理汇总了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);
}