Yaf_Config_Simple::current
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Get current entry value
Description
Yaf_Config_Simple::current(): mixed
Returns the value of the current configuration entry during iteration. Array values are wrapped in a Yaf_Config_Abstract object.
Parameters Parameters
Return Values
The value of the current entry, or false if the position is invalid.
Examples
Yaf_Config_Simple::current example
php
<?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:
output
application => <config node>
version => 1.0See Also
Yaf_Config_Simple::keyYaf_Config_Simple::nextYaf_Config_Simple::rewindYaf_Config_Simple::valid