Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16625 программистов и 1698 роботов. Сейчас ищут 1782 программиста ...
PEAR_Config::mergeConfigFile
Вернуться к: PEAR_Config
PEAR_Config::mergeConfigFile
PEAR_Config::mergeConfigFile() – Merges data into a config layer from a file
Synopsis
require_once 'PEAR/config.php';
bool PEAR_Config::mergeConfigFile ( string $file , bool $override = true , string $layer = 'user' )
Merges data into a config layer from a file. Does the same thing as readConfigFile(), except it does not replace all existing values in the config layer.
Parameter
- string $file
-
file to read from
- boolean $override
-
whether to overwrite existing data
- string $layer
-
config layer to insert data into ('user' or 'system')
Return value
bool - Returns TRUE on success, PEAR_Error on failure.
Throws
Error code | Error value | Meaning | Solution |
---|---|---|---|
" |
Note
This function can not be called statically.
Вернуться к: PEAR_Config