Yaf_Config_Simple::offsetGet
PHP function
Edit on GitHub ✎
(Yaf >=1.0.0)
Get a value (ArrayAccess)
Description
Yaf_Config_Simple::offsetGet(mixed $name): mixed
Retrieves a configuration value by key. This method is an alias of Yaf_Config_Simple::get and is called when array syntax is used to read a configuration object.
Parameters
nameThe configuration key to retrieve.
Return Values
The value associated with name, or null if the key does not exist.
Examples
Yaf_Config_Simple::offsetGet example
php
<?php
$config = new Yaf_Config_Simple([
'application' => ['name' => 'MyApp'],
'database' => ['host' => 'localhost'],
]);
// Array values are wrapped in a Yaf_Config_Simple object
echo $config['application']->name, "\n";
echo $config['database']['host'], "\n";
var_dump($config['missing']);
?>The above example will output something similar to:
output
MyApp
localhost
NULLSee Also
Yaf_Config_Simple::getYaf_Config_Simple::offsetSetYaf_Config_Simple::offsetUnset