mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-08 17:07:33 +08:00
...
This commit is contained in:
@ -77,7 +77,7 @@ class ArrayHelper
|
||||
public static function get($array, $key, $default = null)
|
||||
{
|
||||
if ($key instanceof \Closure) {
|
||||
return call_user_func($key, $array, $default);
|
||||
return $key($array, $default);
|
||||
} elseif (is_array($array)) {
|
||||
return isset($array[$key]) || array_key_exists($key, $array) ? $array[$key] : $default;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user