0 关注者

类 yii\helpers\ReplaceArrayValue

继承关系yii\helpers\ReplaceArrayValue
可用版本2.0.10
源代码 https://github.com/yiisoft/yii2/blob/master/framework/helpers/ReplaceArrayValue.php

表示在执行 yii\helpers\ArrayHelper::merge() 时数组值替换的对象。

使用示例

$array1 = [
    'ids' => [
        1,
    ],
    'validDomains' => [
        'example.com',
        'www.example.com',
    ],
];

$array2 = [
    'ids' => [
        2,
    ],
    'validDomains' => new \yii\helpers\ReplaceArrayValue([
        'yiiframework.com',
        'www.yiiframework.com',
    ]),
];

$result = \yii\helpers\ArrayHelper::merge($array1, $array2);

结果将是

[
    'ids' => [
        1,
        2,
    ],
    'validDomains' => [
        'yiiframework.com',
        'www.yiiframework.com',
    ],
]

公共属性

隐藏继承属性

属性 类型 描述 定义于
$value mixed 用作替换的值。 yii\helpers\ReplaceArrayValue

公共方法

隐藏继承方法

方法 描述 定义于
__construct() 构造函数。 yii\helpers\ReplaceArrayValue
__set_state() 使用 var_export() 后恢复类状态。 yii\helpers\ReplaceArrayValue

属性详情

隐藏继承属性

$value 公共属性

用作替换的值。

public mixed $value null

方法详情

隐藏继承方法

__construct() 公共方法

构造函数。

public void __construct ( $value )
$value mixed

用作替换的值。

                public function __construct($value)
{
    $this->value = $value;
}

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

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

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

public static yii\helpers\ReplaceArrayValue __set_state ( $state )
$state array
抛出 yii\base\InvalidConfigException

当 $state 属性不包含 value 参数时

                public static function __set_state($state)
{
    if (!isset($state['value'])) {
        throw new InvalidConfigException('Failed to instantiate class "ReplaceArrayValue". Required parameter "value" is missing');
    }
    return new self($state['value']);
}