类 yii\helpers\UnsetArrayValue
继承关系 | yii\helpers\UnsetArrayValue |
---|---|
可用版本 | 2.0.10 |
源代码 | https://github.com/yiisoft/yii2/blob/master/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()
后恢复类状态。
public static yii\helpers\UnsetArrayValue __set_state ( $state ) | ||
$state | 数组 |
public static function __set_state($state)
{
return new self();
}
注册 或 登录 发表评论。