|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ArrayHelper class file.
|
|
|
|
*
|
|
|
|
* @link http://www.yiiframework.com/
|
|
|
|
* @copyright Copyright © 2008 Yii Software LLC
|
|
|
|
* @license http://www.yiiframework.com/license/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace yii\util;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ArrayHelper provides additional array functionality you can use in your
|
|
|
|
* application.
|
|
|
|
*
|
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
|
|
* @since 2.0
|
|
|
|
*/
|
|
|
|
class ArrayHelper
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Merges two or more 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. You can specify additional
|
|
|
|
* arrays via third argument, fourth argument etc.
|
|
|
|
* @return array the merged array (the original arrays are not changed.)
|
|
|
|
*/
|
|
|
|
public static function merge($a, $b)
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$res = array_shift($args);
|
|
|
|
while ($args !== array()) {
|
|
|
|
$next = array_shift($args);
|
|
|
|
foreach ($next as $k => $v) {
|
|
|
|
if (is_integer($k)) {
|
|
|
|
isset($res[$k]) ? $res[] = $v : $res[$k] = $v;
|
|
|
|
} elseif (is_array($v) && isset($res[$k]) && is_array($res[$k])) {
|
|
|
|
$res[$k] = self::merge($res[$k], $v);
|
|
|
|
} else {
|
|
|
|
$res[$k] = $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the value of an array element or object property with the given key or property name.
|
|
|
|
* If the key does not exist in the array, the default value will be returned instead.
|
|
|
|
*
|
|
|
|
* Below are some usage examples,
|
|
|
|
*
|
|
|
|
* ~~~
|
|
|
|
* // working with array
|
|
|
|
* $username = \yii\util\ArrayHelper::getValue($_POST, 'username');
|
|
|
|
* // working with object
|
|
|
|
* $username = \yii\util\ArrayHelper::getValue($user, 'username');
|
|
|
|
* // working with anonymous function
|
|
|
|
* $fullName = \yii\util\ArrayHelper::getValue($user, function($user, $defaultValue) {
|
|
|
|
* return $user->firstName . ' ' . $user->lastName;
|
|
|
|
* });
|
|
|
|
* ~~~
|
|
|
|
*
|
|
|
|
* @param array|object $array array or object to extract value from
|
|
|
|
* @param string|\Closure $key key name of the array element, or property name of the object,
|
|
|
|
* or an anonymous function returning the value. The anonymous function signature should be:
|
|
|
|
* `function($array, $defaultValue)`.
|
|
|
|
* @param mixed $default the default value to be returned if the specified key does not exist
|
|
|
|
* @return mixed the value of the
|
|
|
|
*/
|
|
|
|
public static function getValue($array, $key, $default = null)
|
|
|
|
{
|
|
|
|
if ($key instanceof \Closure) {
|
|
|
|
return $key($array, $default);
|
|
|
|
} elseif (is_array($array)) {
|
|
|
|
return isset($array[$key]) || array_key_exists($key, $array) ? $array[$key] : $default;
|
|
|
|
} else {
|
|
|
|
return $array->$key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indexes an array according to a specified key.
|
|
|
|
* The input array should be multidimensional or an array of objects.
|
|
|
|
*
|
|
|
|
* The key can be a key name of the sub-array, a property name of object, or an anonymous
|
|
|
|
* function which returns the key value given an array element.
|
|
|
|
*
|
|
|
|
* If a key value is null, the corresponding array element will be discarded and not put in the result.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
*
|
|
|
|
* ~~~
|
|
|
|
* $array = array(
|
|
|
|
* array('id' => '123', 'data' => 'abc'),
|
|
|
|
* array('id' => '345', 'data' => 'def'),
|
|
|
|
* );
|
|
|
|
* $result = ArrayHelper::index($array, 'id');
|
|
|
|
* // the result is:
|
|
|
|
* // array(
|
|
|
|
* // '123' => array('id' => '123', 'data' => 'abc'),
|
|
|
|
* // '345' => array('id' => '345', 'data' => 'def'),
|
|
|
|
* // )
|
|
|
|
*
|
|
|
|
* // using anonymous function
|
|
|
|
* $result = ArrayHelper::index($array, function(element) {
|
|
|
|
* return $element['id'];
|
|
|
|
* });
|
|
|
|
* ~~~
|
|
|
|
*
|
|
|
|
* @param array $array the array that needs to be indexed
|
|
|
|
* @param string|\Closure $key the column name or anonymous function whose result will be used to index the array
|
|
|
|
* @return array the indexed array
|
|
|
|
*/
|
|
|
|
public static function index($array, $key)
|
|
|
|
{
|
|
|
|
$result = array();
|
|
|
|
foreach ($array as $element) {
|
|
|
|
$value = static::getValue($element, $key);
|
|
|
|
$result[$value] = $element;
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the values of a specified column in an array.
|
|
|
|
* The input array should be multidimensional or an array of objects.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
*
|
|
|
|
* ~~~
|
|
|
|
* $array = array(
|
|
|
|
* array('id' => '123', 'data' => 'abc'),
|
|
|
|
* array('id' => '345', 'data' => 'def'),
|
|
|
|
* );
|
|
|
|
* $result = ArrayHelper::getColumn($array, 'id');
|
|
|
|
* // the result is: array( '123', '345')
|
|
|
|
*
|
|
|
|
* // using anonymous function
|
|
|
|
* $result = ArrayHelper::getColumn($array, function(element) {
|
|
|
|
* return $element['id'];
|
|
|
|
* });
|
|
|
|
* ~~~
|
|
|
|
*
|
|
|
|
* @param array $array
|
|
|
|
* @param string|\Closure $key
|
|
|
|
* @return array the list of column values
|
|
|
|
*/
|
|
|
|
public static function getColumn($array, $key)
|
|
|
|
{
|
|
|
|
$result = array();
|
|
|
|
foreach ($array as $element) {
|
|
|
|
$result[] = static::getValue($element, $key);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Builds a map (key-value pairs) from a multidimensional array or an array of objects.
|
|
|
|
* The `$from` and `$to` parameters specify the key names or property names to set up the map.
|
|
|
|
* Optionally, one can further group the map according to a grouping field `$group`.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
*
|
|
|
|
* ~~~
|
|
|
|
* $array = array(
|
|
|
|
* array('id' => '123', 'name' => 'aaa', 'class' => 'x'),
|
|
|
|
* array('id' => '124', 'name' => 'bbb', 'class' => 'x'),
|
|
|
|
* array('id' => '345', 'name' => 'ccc', 'class' => 'y'),
|
|
|
|
* );
|
|
|
|
*
|
|
|
|
* $result = ArrayHelper::map($array, 'id', 'name');
|
|
|
|
* // the result is:
|
|
|
|
* // array(
|
|
|
|
* // '123' => 'aaa',
|
|
|
|
* // '124' => 'bbb',
|
|
|
|
* // '345' => 'ccc',
|
|
|
|
* // )
|
|
|
|
*
|
|
|
|
* $result = ArrayHelper::map($array, 'id', 'name', 'class');
|
|
|
|
* // the result is:
|
|
|
|
* // array(
|
|
|
|
* // 'x' => array(
|
|
|
|
* // '123' => 'aaa',
|
|
|
|
* // '124' => 'bbb',
|
|
|
|
* // ),
|
|
|
|
* // 'y' => array(
|
|
|
|
* // '345' => 'ccc',
|
|
|
|
* // ),
|
|
|
|
* // )
|
|
|
|
* ~~~
|
|
|
|
*
|
|
|
|
* @param array $array
|
|
|
|
* @param string|\Closure $from
|
|
|
|
* @param string|\Closure $to
|
|
|
|
* @param string|\Closure $group
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function map($array, $from, $to, $group = null)
|
|
|
|
{
|
|
|
|
$result = array();
|
|
|
|
foreach ($array as $element) {
|
|
|
|
$key = static::getValue($element, $from);
|
|
|
|
$value = static::getValue($element, $to);
|
|
|
|
if ($group !== null) {
|
|
|
|
$result[static::getValue($element, $group)][$key] = $value;
|
|
|
|
} else {
|
|
|
|
$result[$key] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sorts a multi-dimensional array by a specific key.
|
|
|
|
* The multi-dimensional array can be either an array of arrays or an array of objects,
|
|
|
|
* and the key can be a key name of the sub-arrays or a property name of the objects.
|
|
|
|
* @param array $items the multi-dimensional array to be sorted
|
|
|
|
* @param string|\Closure $key key name of the array element, or property name of the object,
|
|
|
|
* or an anonymous function returning the value. The anonymous function signature should be:
|
|
|
|
* `function($item)`.
|
|
|
|
* @param boolean $ascending whether to sort in ascending or descending order
|
|
|
|
* @param integer $sortFlag the PHP sort flag (e.g. `SORT_REGULAR`, `SORT_NUMERIC`.)
|
|
|
|
* See [PHP manual](http://php.net/manual/en/function.sort.php) for more details.
|
|
|
|
* @return array the sorted result. Note that the array will be re-indexed with integers.
|
|
|
|
*/
|
|
|
|
public static function sort($items, $key, $ascending = true, $sortFlag = SORT_REGULAR)
|
|
|
|
{
|
|
|
|
if (empty($items)) {
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($items as $k => $item) {
|
|
|
|
$index[$k] = static::getValue($item, $key);
|
|
|
|
}
|
|
|
|
if ($ascending) {
|
|
|
|
asort($index, $sortFlag);
|
|
|
|
} else {
|
|
|
|
arsort($index, $sortFlag);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = array();
|
|
|
|
foreach ($index as $k => $v) {
|
|
|
|
$result[] = $items[$k];
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|