0 关注者

类 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,
    ],
]

公共方法

隐藏继承的方法

方法 描述 定义位置
__set_state() 使用 var_export() 后恢复类状态。 yii\helpers\UnsetArrayValue

方法详情

隐藏继承的方法

__set_state() 公共静态方法 (可用版本 2.0.16)

使用 var_export() 后恢复类状态。

另请参见 https://php.ac.cn/manual/en/function.var-export.php.

public static yii\helpers\UnsetArrayValue __set_state ( $state )
$state 数组

                public static function __set_state($state)
{
    return new self();
}