次のような独自の再帰ウォーカーをロールすることができます。
function configWalkRecursive(Zend_Config $config, $callback)
{
foreach ($config as $key => $item) {
if ($item instanceof Zend_Config) {
// recurse into child Zend_Config objects
configWalkRecursive($item, $callback);
} else {
// run the callback against the element
$callback($key, $item, $config);
}
}
}
これは、Zend_Config内の要素を繰り返し処理し、別のZend_Configが見つかった場合は繰り返し、それ以外の場合は現在のアイテムをコールバック関数に渡します。
次に、コールバックに対して、次のような操作を行ってアイテムをテストし、必要に応じて置き換えることができます。
$array = array(
'key' => 'value',
'key2' => array(
'key' => '@@INJECT@@',
'key2' => 'value'
),
'key3' => '@@INJECT@@'
);
$config = new Zend_Config($array, true);
print_r($config);
configWalkRecursive($config, function($key, $item, $configObject) {
if ('@@INJECT@@' === $item) {
$configObject->$key = 'somevalue';
}
);
print_r($config);
出力は次のようになります。
Zend_Config Object
(
[_allowModifications:protected] => 1
[_index:protected] => 0
[_count:protected] => 3
[_data:protected] => Array
(
[key] => value
[key2] => Zend_Config Object
(
[_allowModifications:protected] => 1
[_index:protected] => 0
[_count:protected] => 2
[_data:protected] => Array
(
[key] => @@INJECT@@
[key2] => value
)
[_skipNextIteration:protected] =>
[_loadedSection:protected] =>
[_extends:protected] => Array
(
)
[_loadFileErrorStr:protected] =>
)
[key3] => @@INJECT@@
)
[_skipNextIteration:protected] =>
[_loadedSection:protected] =>
[_extends:protected] => Array
(
)
[_loadFileErrorStr:protected] =>
)
Zend_Config Object
(
[_allowModifications:protected] => 1
[_index:protected] => 3
[_count:protected] => 3
[_data:protected] => Array
(
[key] => value
[key2] => Zend_Config Object
(
[_allowModifications:protected] => 1
[_index:protected] => 2
[_count:protected] => 2
[_data:protected] => Array
(
[key] => somevalue
[key2] => value
)
[_skipNextIteration:protected] =>
[_loadedSection:protected] =>
[_extends:protected] => Array
(
)
[_loadFileErrorStr:protected] =>
)
[key3] => somevalue
)
[_skipNextIteration:protected] =>
[_loadedSection:protected] =>
[_extends:protected] => Array
(
)
[_loadFileErrorStr:protected] =>
)