Class yii\helpers\UnsetArrayValue
继承 | yii\helpers\UnsetArrayValue |
---|---|
可用版本自 | 2.0.10 |
源码 | https://github.com/yiichina/yii2/blob/api/framework/helpers/UnsetArrayValue.php |
该对象调用 yii\helpers\ArrayHelper::merge() 方法后对数组中的值进行移除操作。
例如:
$array1 = [
'ids' => [
1,
],
'validDomains' => [
'example.com',
'www.example.com',
],
];
$array2 = [
'ids' => [
2,
],
'validDomains' => new \yii\helpers\UnsetArrayValue(),
];
$result = \yii\helpers\ArrayHelper::merge($array1, $array2);
结果如下
[
'ids' => [
1,
2,
],
]
方法详情
使用 var_export()
后进行实例化。
参见 \yii\helpers\var_export().
public static yii\helpers\UnsetArrayValue __set_state($state) | ||
$state | array |