PHP 8.6.0 Beta 3 is available for testing

Yaf_Config_Ini::__construct

(Yaf >=1.0.0)

Yaf_Config_Ini::__constructConstructor of Yaf_Config_Ini

Опис

publicfunction Yaf_Config_Ini::__construct(mixed $config_file, string $section = NULL)

Creates a new Yaf_Config_Ini instance from an INI file or an array. The resulting configuration is always read-only.

Параметри

config_file

The path to an INI file, or an array of configuration values.

section

The INI section name to load. If omitted, all sections are loaded.

Значення, що повертаються

No value is returned.

Приклади

Приклад #1 Yaf_Config_Ini::__construct() example

<?php
/**
 * Assume /etc/myapp/application.ini contains:
 * [common]
 * application.name = "MyApp"
 * database.host    = "localhost"
 * database.port    = 3306
 *
 * [production : common]
 * log.level        = "warning"
 */

// Load only the "production" section, which inherits from "common"
$config = new Yaf_Config_Ini('/etc/myapp/application.ini', 'production');

echo $config->application->name, "\n";
echo $config->database->host, "\n";
echo $config->log->level, "\n";
?>

Поданий вище приклад виведе щось схоже на:

MyApp
localhost
warning

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top