Class yii\helpers\ReplaceArrayValue
继承 | yii\helpers\ReplaceArrayValue |
---|---|
可用版本自 | 2.0.10 |
源码 | https://github.com/yiichina/yii2/blob/api/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 | \yii\helpers\将 | 值用作替换值。 |
使用 var_export()
后进行实例化。
参见 \yii\helpers\var_export().
public static yii\helpers\ReplaceArrayValue __set_state($state) | ||
$state | array | |
throws | yii\base\InvalidConfigException | 当 $state 数组中不包含 |
---|