|
|
@ -1,91 +1,81 @@ |
|
|
|
<?php |
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
|
|
namespace yii\base; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* This file contains classes implementing Map feature. |
|
|
|
* Dictionary class file. |
|
|
|
* |
|
|
|
* |
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
|
|
* @link http://www.yiiframework.com/ |
|
|
|
* @link http://www.yiiframework.com/ |
|
|
|
* @copyright Copyright © 2008-2011 Yii Software LLC |
|
|
|
* @copyright Copyright © 2008-2012 Yii Software LLC |
|
|
|
* @license http://www.yiiframework.com/license/ |
|
|
|
* @license http://www.yiiframework.com/license/ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace yii\base; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* CMap implements a collection that takes key-value pairs. |
|
|
|
* Dictionary implements a collection that stores key-value pairs. |
|
|
|
* |
|
|
|
* |
|
|
|
* You can access, add or remove an item with a key by using |
|
|
|
* You can access, add or remove an item with a key by using |
|
|
|
* {@link itemAt}, {@link add}, and {@link remove}. |
|
|
|
* [[itemAt]], [[add]], and [[remove]]. |
|
|
|
* To get the number of the items in the map, use {@link getCount}. |
|
|
|
* |
|
|
|
* CMap can also be used like a regular array as follows, |
|
|
|
* To get the number of the items in the dictionary, use [[getCount]]. |
|
|
|
* <pre> |
|
|
|
* |
|
|
|
* $map[$key]=$value; // add a key-value pair |
|
|
|
* Because Dictionary implements a set of SPL interfaces, it can be used |
|
|
|
* unset($map[$key]); // remove the value with the specified key |
|
|
|
* like a regular PHP array as follows, |
|
|
|
* if(isset($map[$key])) // if the map contains the key |
|
|
|
* |
|
|
|
* foreach($map as $key=>$value) // traverse the items in the map |
|
|
|
* ~~~php |
|
|
|
* $n=count($map); // returns the number of items in the map |
|
|
|
* $dictionary[$key] = $value; // add a key-value pair |
|
|
|
* </pre> |
|
|
|
* unset($dictionary[$key]); // remove the value with the specified key |
|
|
|
|
|
|
|
* if (isset($dictionary[$key])) // if the dictionary contains the key |
|
|
|
|
|
|
|
* foreach ($dictionary as $key=>$value) // traverse the items in the dictionary |
|
|
|
|
|
|
|
* $n = count($dictionary); // returns the number of items in the dictionary |
|
|
|
|
|
|
|
* ~~~ |
|
|
|
* |
|
|
|
* |
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
|
|
* @version $Id: CMap.php 3153 2011-04-01 12:50:06Z qiang.xue $ |
|
|
|
* @since 2.0 |
|
|
|
* @package system.collections |
|
|
|
|
|
|
|
* @since 1.0 |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, \Countable |
|
|
|
class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, \Countable |
|
|
|
{ |
|
|
|
{ |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var array internal data storage |
|
|
|
* @var boolean whether this vector is read-only or not. |
|
|
|
|
|
|
|
* If the vector is read-only, adding or moving items will throw an exception. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private $_d=array(); |
|
|
|
public $readOnly; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var boolean whether this list is read-only |
|
|
|
* @var array internal data storage |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private $_r=false; |
|
|
|
private $_d = array(); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Constructor. |
|
|
|
* Constructor. |
|
|
|
* Initializes the list with an array or an iterable object. |
|
|
|
* Initializes the dictionary with an array or an iterable object. |
|
|
|
* @param array $data the intial data. Default is null, meaning no initialization. |
|
|
|
* @param mixed $data the initial data to be populated into the dictionary. |
|
|
|
* @param boolean $readOnly whether the list is read-only |
|
|
|
* This can be an array or an iterable object. |
|
|
|
* @throws CException If data is not null and neither an array nor an iterator. |
|
|
|
* @param boolean $readOnly whether the dictionary is read-only |
|
|
|
|
|
|
|
* @throws Exception if data is not well formed (neither an array nor an iterable object) |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function __construct($data=null,$readOnly=false) |
|
|
|
public function __construct($data = array(), $readOnly = false) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if($data!==null) |
|
|
|
if ($data !== array()) { |
|
|
|
$this->copyFrom($data); |
|
|
|
$this->copyFrom($data); |
|
|
|
$this->setReadOnly($readOnly); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$this->readOnly = $readOnly; |
|
|
|
/** |
|
|
|
|
|
|
|
* @return boolean whether this map is read-only or not. Defaults to false. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getReadOnly() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->_r; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @param boolean $value whether this list is read-only or not |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
protected function setReadOnly($value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->_r=$value; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns an iterator for traversing the items in the list. |
|
|
|
* Returns an iterator for traversing the items in the dictionary. |
|
|
|
* This method is required by the interface IteratorAggregate. |
|
|
|
* This method is required by the SPL interface `IteratorAggregate`. |
|
|
|
* @return CMapIterator an iterator for traversing the items in the list. |
|
|
|
* It will be implicitly called when you use `foreach` to traverse the dictionary. |
|
|
|
|
|
|
|
* @return DictionaryIterator an iterator for traversing the items in the dictionary. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function getIterator() |
|
|
|
public function getIterator() |
|
|
|
{ |
|
|
|
{ |
|
|
|
return new CMapIterator($this->_d); |
|
|
|
return new DictionaryIterator($this->_d); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns the number of items in the map. |
|
|
|
* Returns the number of items in the dictionary. |
|
|
|
* This method is required by Countable interface. |
|
|
|
* This method is required by the SPL `Countable` interface. |
|
|
|
* @return integer number of items in the map. |
|
|
|
* It will be implicitly called when you use `count($dictionary)`. |
|
|
|
|
|
|
|
* @return integer number of items in the dictionary. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function count() |
|
|
|
public function count() |
|
|
|
{ |
|
|
|
{ |
|
|
@ -93,8 +83,8 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns the number of items in the map. |
|
|
|
* Returns the number of items in the dictionary. |
|
|
|
* @return integer the number of items in the map |
|
|
|
* @return integer the number of items in the dictionary |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function getCount() |
|
|
|
public function getCount() |
|
|
|
{ |
|
|
|
{ |
|
|
@ -102,6 +92,7 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the keys stored in the dictionary. |
|
|
|
* @return array the key list |
|
|
|
* @return array the key list |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function getKeys() |
|
|
|
public function getKeys() |
|
|
@ -111,77 +102,75 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns the item with the specified key. |
|
|
|
* Returns the item with the specified key. |
|
|
|
* This method is exactly the same as {@link offsetGet}. |
|
|
|
|
|
|
|
* @param mixed $key the key |
|
|
|
* @param mixed $key the key |
|
|
|
* @return mixed the element at the offset, null if no element is found at the offset |
|
|
|
* @return mixed the element with the specified key. |
|
|
|
|
|
|
|
* Null if the key cannot be found in the dictionary. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function itemAt($key) |
|
|
|
public function itemAt($key) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if(isset($this->_d[$key])) |
|
|
|
return isset($this->_d[$key]) ? $this->_d[$key] : null; |
|
|
|
return $this->_d[$key]; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Adds an item into the map. |
|
|
|
* Adds an item into the dictionary. |
|
|
|
* Note, if the specified key already exists, the old value will be overwritten. |
|
|
|
* Note, if the specified key already exists, the old value will be overwritten. |
|
|
|
* @param mixed $key key |
|
|
|
* @param mixed $key key |
|
|
|
* @param mixed $value value |
|
|
|
* @param mixed $value value |
|
|
|
* @throws CException if the map is read-only |
|
|
|
* @throws Exception if the dictionary is read-only |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function add($key, $value) |
|
|
|
public function add($key, $value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if(!$this->_r) |
|
|
|
if (!$this->readOnly) { |
|
|
|
{ |
|
|
|
if ($key === null) { |
|
|
|
if($key===null) |
|
|
|
|
|
|
|
$this->_d[] = $value; |
|
|
|
$this->_d[] = $value; |
|
|
|
else |
|
|
|
} |
|
|
|
|
|
|
|
else { |
|
|
|
$this->_d[$key] = $value; |
|
|
|
$this->_d[$key] = $value; |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
} |
|
|
|
throw new CException(Yii::t('yii','The map is read only.')); |
|
|
|
else { |
|
|
|
|
|
|
|
throw new Exception('Dictionary is read only.'); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Removes an item from the map by its key. |
|
|
|
* Removes an item from the dictionary by its key. |
|
|
|
* @param mixed $key the key of the item to be removed |
|
|
|
* @param mixed $key the key of the item to be removed |
|
|
|
* @return mixed the removed value, null if no such key exists. |
|
|
|
* @return mixed the removed value, null if no such key exists. |
|
|
|
* @throws CException if the map is read-only |
|
|
|
* @throws Exception if the dictionary is read-only |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function remove($key) |
|
|
|
public function remove($key) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if(!$this->_r) |
|
|
|
if (!$this->readOnly) { |
|
|
|
{ |
|
|
|
if (isset($this->_d[$key])) { |
|
|
|
if(isset($this->_d[$key])) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$value = $this->_d[$key]; |
|
|
|
$value = $this->_d[$key]; |
|
|
|
unset($this->_d[$key]); |
|
|
|
unset($this->_d[$key]); |
|
|
|
return $value; |
|
|
|
return $value; |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else { // the value is null |
|
|
|
{ |
|
|
|
|
|
|
|
// it is possible the value is null, which is not detected by isset |
|
|
|
|
|
|
|
unset($this->_d[$key]); |
|
|
|
unset($this->_d[$key]); |
|
|
|
return null; |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else { |
|
|
|
throw new CException(Yii::t('yii','The map is read only.')); |
|
|
|
throw new Exception('Dictionary is read only.'); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Removes all items in the map. |
|
|
|
* Removes all items in the dictionary. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function clear() |
|
|
|
public function clear() |
|
|
|
{ |
|
|
|
{ |
|
|
|
foreach(array_keys($this->_d) as $key) |
|
|
|
foreach (array_keys($this->_d) as $key) { |
|
|
|
$this->remove($key); |
|
|
|
$this->remove($key); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* Returns a value indicating whether the dictionary contains the specified key. |
|
|
|
* @param mixed $key the key |
|
|
|
* @param mixed $key the key |
|
|
|
* @return boolean whether the map contains an item with the specified key |
|
|
|
* @return boolean whether the dictionary contains an item with the specified key |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function contains($key) |
|
|
|
public function contains($key) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -189,6 +178,7 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* Returns the dictionary as a PHP array. |
|
|
|
* @return array the list of items in array |
|
|
|
* @return array the list of items in array |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function toArray() |
|
|
|
public function toArray() |
|
|
@ -197,33 +187,37 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Copies iterable data into the map. |
|
|
|
* Copies iterable data into the dictionary. |
|
|
|
* Note, existing data in the map will be cleared first. |
|
|
|
* Note, existing data in the dictionary will be cleared first. |
|
|
|
* @param mixed $data the data to be copied from, must be an array or object implementing Traversable |
|
|
|
* @param mixed $data the data to be copied from, must be an array or an object implementing `Traversable` |
|
|
|
* @throws CException If data is neither an array nor an iterator. |
|
|
|
* @throws Exception if data is neither an array nor an iterator. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function copyFrom($data) |
|
|
|
public function copyFrom($data) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (is_array($data) || $data instanceof Traversable) |
|
|
|
if (is_array($data) || $data instanceof Traversable) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if($this->getCount()>0) |
|
|
|
if (($this->_d !== array()) { |
|
|
|
$this->clear(); |
|
|
|
$this->clear(); |
|
|
|
if($data instanceof CMap) |
|
|
|
} |
|
|
|
|
|
|
|
if ($data instanceof self) { |
|
|
|
$data = $data->_d; |
|
|
|
$data = $data->_d; |
|
|
|
foreach($data as $key=>$value) |
|
|
|
} |
|
|
|
|
|
|
|
foreach ($data as $key => $value) { |
|
|
|
$this->add($key, $value); |
|
|
|
$this->add($key, $value); |
|
|
|
} |
|
|
|
} |
|
|
|
else if($data!==null) |
|
|
|
} |
|
|
|
throw new CException(Yii::t('yii','Map data must be an array or an object implementing Traversable.')); |
|
|
|
else { |
|
|
|
|
|
|
|
throw new Exception('Data must be either an array or an object implementing Traversable.'); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Merges iterable data into the map. |
|
|
|
* Merges iterable data into the dictionary. |
|
|
|
* |
|
|
|
* |
|
|
|
* Existing elements in the map will be overwritten if their keys are the same as those in the source. |
|
|
|
* Existing elements in the dictionary will be overwritten if their keys are the same as those in the source. |
|
|
|
* If the merge is recursive, the following algorithm is performed: |
|
|
|
* If the merge is recursive, the following algorithm is performed: |
|
|
|
* <ul> |
|
|
|
* <ul> |
|
|
|
* <li>the map data is saved as $a, and the source data is saved as $b;</li> |
|
|
|
* <li>the dictionary data is saved as $a, and the source data is saved as $b;</li> |
|
|
|
* <li>if $a and $b both have an array indxed at the same string key, the arrays will be merged using this algorithm;</li> |
|
|
|
* <li>if $a and $b both have an array indxed at the same string key, the arrays will be merged using this algorithm;</li> |
|
|
|
* <li>any integer-indexed elements in $b will be appended to $a and reindxed accordingly;</li> |
|
|
|
* <li>any integer-indexed elements in $b will be appended to $a and reindxed accordingly;</li> |
|
|
|
* <li>any string-indexed elements in $b will overwrite elements in $a with the same index;</li> |
|
|
|
* <li>any string-indexed elements in $b will overwrite elements in $a with the same index;</li> |
|
|
@ -238,7 +232,7 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (is_array($data) || $data instanceof Traversable) |
|
|
|
if (is_array($data) || $data instanceof Traversable) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if($data instanceof CMap) |
|
|
|
if ($data instanceof Dictionary) |
|
|
|
$data=$data->_d; |
|
|
|
$data=$data->_d; |
|
|
|
if ($recursive) |
|
|
|
if ($recursive) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -259,39 +253,14 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else if ($data!==null) |
|
|
|
else if ($data!==null) |
|
|
|
throw new CException(Yii::t('yii','Map data must be an array or an object implementing Traversable.')); |
|
|
|
throw new CException(Yii::t('yii','Dictionary data must be an array or an object implementing Traversable.')); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Merges two arrays into one recursively. |
|
|
|
|
|
|
|
* If each array has an element with the same string key value, the latter |
|
|
|
|
|
|
|
* will overwrite the former (different from array_merge_recursive). |
|
|
|
|
|
|
|
* Recursive merging will be conducted if both arrays have an element of array |
|
|
|
|
|
|
|
* type and are having the same key. |
|
|
|
|
|
|
|
* For integer-keyed elements, the elements from the latter array will |
|
|
|
|
|
|
|
* be appended to the former array. |
|
|
|
|
|
|
|
* @param array $a array to be merged to |
|
|
|
|
|
|
|
* @param array $b array to be merged from |
|
|
|
|
|
|
|
* @return array the merged array (the original arrays are not changed.) |
|
|
|
|
|
|
|
* @see mergeWith |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static function mergeArray($a,$b) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
foreach($b as $k=>$v) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if(is_integer($k)) |
|
|
|
|
|
|
|
isset($a[$k]) ? $a[]=$v : $a[$k]=$v; |
|
|
|
|
|
|
|
else if(is_array($v) && isset($a[$k]) && is_array($a[$k])) |
|
|
|
|
|
|
|
$a[$k]=self::mergeArray($a[$k],$v); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
$a[$k]=$v; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $a; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns whether there is an element at the specified offset. |
|
|
|
* Returns whether there is an element at the specified offset. |
|
|
|
* This method is required by the interface ArrayAccess. |
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `isset($vector[$index])`. |
|
|
|
|
|
|
|
* This is equivalent to [[contains]]. |
|
|
|
* @param mixed $offset the offset to check on |
|
|
|
* @param mixed $offset the offset to check on |
|
|
|
* @return boolean |
|
|
|
* @return boolean |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -302,7 +271,9 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns the element at the specified offset. |
|
|
|
* Returns the element at the specified offset. |
|
|
|
* This method is required by the interface ArrayAccess. |
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `$value = $dictionary[$index];`. |
|
|
|
|
|
|
|
* This is equivalent to [[itemAt]]. |
|
|
|
* @param integer $offset the offset to retrieve element. |
|
|
|
* @param integer $offset the offset to retrieve element. |
|
|
|
* @return mixed the element at the offset, null if no element is found at the offset |
|
|
|
* @return mixed the element at the offset, null if no element is found at the offset |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -313,8 +284,12 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Sets the element at the specified offset. |
|
|
|
* Sets the element at the specified offset. |
|
|
|
* This method is required by the interface ArrayAccess. |
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
* @param integer $offset the offset to set element |
|
|
|
* It is implicitly called when you use something like `$dictionary[$key] = $value;`. |
|
|
|
|
|
|
|
* If the offset is null, the new item will be appended to the dictionary. |
|
|
|
|
|
|
|
* Otherwise, the existing item at the offset will be replaced with the new item. |
|
|
|
|
|
|
|
* This is equivalent to [[add]]. |
|
|
|
|
|
|
|
* @param mixed $offset the offset to set element |
|
|
|
* @param mixed $item the element value |
|
|
|
* @param mixed $item the element value |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function offsetSet($offset, $item) |
|
|
|
public function offsetSet($offset, $item) |
|
|
@ -324,11 +299,40 @@ class Dictionary extends Component implements \IteratorAggregate, \ArrayAccess, |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Unsets the element at the specified offset. |
|
|
|
* Unsets the element at the specified offset. |
|
|
|
* This method is required by the interface ArrayAccess. |
|
|
|
* This method is required by the SPL interface `ArrayAccess`. |
|
|
|
|
|
|
|
* It is implicitly called when you use something like `unset($dictionary[$index])`. |
|
|
|
|
|
|
|
* This is equivalent to [[remove]]. |
|
|
|
* @param mixed $offset the offset to unset element |
|
|
|
* @param mixed $offset the offset to unset element |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function offsetUnset($offset) |
|
|
|
public function offsetUnset($offset) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->remove($offset); |
|
|
|
$this->remove($offset); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Merges two arrays into one recursively. |
|
|
|
|
|
|
|
* If each array has an element with the same string key value, the latter |
|
|
|
|
|
|
|
* will overwrite the former (different from array_merge_recursive). |
|
|
|
|
|
|
|
* Recursive merging will be conducted if both arrays have an element of array |
|
|
|
|
|
|
|
* type and are having the same key. |
|
|
|
|
|
|
|
* For integer-keyed elements, the elements from the latter array will |
|
|
|
|
|
|
|
* be appended to the former array. |
|
|
|
|
|
|
|
* @param array $a array to be merged to |
|
|
|
|
|
|
|
* @param array $b array to be merged from |
|
|
|
|
|
|
|
* @return array the merged array (the original arrays are not changed.) |
|
|
|
|
|
|
|
* @see mergeWith |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public static function mergeArray($a,$b) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
foreach($b as $k=>$v) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if(is_integer($k)) |
|
|
|
|
|
|
|
isset($a[$k]) ? $a[]=$v : $a[$k]=$v; |
|
|
|
|
|
|
|
else if(is_array($v) && isset($a[$k]) && is_array($a[$k])) |
|
|
|
|
|
|
|
$a[$k]=self::mergeArray($a[$k],$v); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
$a[$k]=$v; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $a; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|