(Yaf >=1.0.0)
Yaf_Config_Simple::current — Get current entry value
Returns the value of the current configuration entry during iteration. Array values are wrapped in a Yaf_Config_Abstract object.
This function has no parameters.
The value of the current entry, or false if the position is invalid.
Example #1 Yaf_Config_Simple::current() example
<?php
$config = new Yaf_Config_Simple([
'application' => ['name' => 'MyApp'],
'version' => '1.0',
]);
$config->rewind();
while ($config->valid()) {
$value = $config->current();
if ($value instanceof Yaf_Config_Abstract) {
echo $config->key(), " => <config node>\n";
} else {
echo $config->key(), " => ", $value, "\n";
}
$config->next();
}
?>The above example will output something similar to:
application => <config node> version => 1.0