php8.5
Home/ Manual/ yaf / yaf_config_abstract/ Yaf_Config_Abstract::get

Yaf_Config_Abstract::get

PHP function Edit on GitHub ✎

(Yaf >=1.0.0)

Retrieve a configuration value

Description

Yaf_Config_Abstract::get(string $name = NULL): mixed

Retrieves a configuration value by name. If name is omitted or null, the configuration object itself is returned, which can be used to iterate over all values.

Parameters

name

The configuration key. Dot notation (e.g. database.host) may be used to access nested values.

Return Values

The value associated with name. Array values are wrapped in a Yaf_Config_Abstract object. Returns null if the key does not exist, or the configuration object itself when name is null.

Examples

Yaf_Config_Abstract::get example

php
<?php
/**
 * Assume /etc/myapp/application.ini contains:
 * [common]
 * database.host = "localhost"
 * database.port = 3306
 */
$config = new Yaf_Config_Ini('/etc/myapp/application.ini', 'common');
echo $config->get('database.host'), "\n";

$simple = new Yaf_Config_Simple([
    'database' => ['host' => '127.0.0.1'],
]);

// Array values are exposed as Yaf_Config_Abstract instances
echo $simple->get('database')->host, "\n";

var_dump($config->get('missing.key'));
?>

The above example will output something similar to:

output
localhost
127.0.0.1
NULL

See Also

  • Yaf_Config_Abstract::set
  • Yaf_Config_Ini::get
  • Yaf_Config_Simple::get

Source: reference/yaf/yaf_config_abstract/get.xml · from the official PHP manual (php/doc-en)