Yaf_Config_Simple::key
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Get current entry key
Description
Yaf_Config_Simple::key(): mixed
Returns the key of the current configuration entry during iteration.
Parameters Parameters
Return Values
The key of the current entry (string or integer), or false if the position is invalid.
Examples
Yaf_Config_Simple::key example
php
<?php
$config = new Yaf_Config_Simple([
'application' => ['name' => 'MyApp'],
'database' => ['host' => 'localhost'],
]);
for ($config->rewind(); $config->valid(); $config->next()) {
echo $config->key(), "\n";
}
?>The above example will output something similar to:
output
application
databaseSee Also
Yaf_Config_Simple::currentYaf_Config_Simple::nextYaf_Config_Simple::rewindYaf_Config_Simple::valid