Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17414 программистов и 1870 роботов. Сейчас ищут 1876 программистов ...
PEAR_Config::set
Вернуться к: PEAR_Config
PEAR_Config::set
PEAR_Config::set() – Set config value in specific layer
Synopsis
require_once 'PEAR/config.php';
bool PEAR_Config::set ( string $key , string $value , string $layer = 'user' )
Set a config value in a specific layer (defaults to 'user'). Enforces the types defined in the configuration_info array. An integer config variable will be cast to int, and a set config variable will be validated against its legal values.
Parameter
- string $key
-
config key
- string $value
-
config value
- string $layer
-
config layer
Return value
bool - Returns TRUE on success, FALSE on failure.
Note
This function can not be called statically.
Вернуться к: PEAR_Config