类 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',
],
]
公共方法
方法 | 描述 | 定义于 |
---|---|---|
__construct() | 构造函数。 | yii\helpers\ReplaceArrayValue |
__set_state() | 使用 var_export() 后恢复类状态。 |
yii\helpers\ReplaceArrayValue |
属性详情
方法详情
构造函数。
public void __construct ( $value ) | ||
$value | mixed |
用作替换的值。 |
public function __construct($value)
{
$this->value = $value;
}
使用 var_export()
后恢复类状态。
public static yii\helpers\ReplaceArrayValue __set_state ( $state ) | ||
$state | array | |
抛出 | yii\base\InvalidConfigException |
当 $state 属性不包含 |
---|
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']);
}
注册 或 登录 以发表评论。