Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17611 программистов и 1872 робота. Сейчас ищут 1864 программиста ...

Config::writeConfig

Вернуться к: Config class

Config::writeConfig

Config::writeConfig() – Write container content to datasource

Synopsis

require_once 'Config.php';

mixed Config::writeConfig ( mixed $datasrc = null , string $configType = null , array $options = array() )

This method will call the root Config_Container::writeDatasrc() method which in turn will try to write the Config contents to the datasource.

Parameter

mixed $datasrc

Datasource to write to

string $configType

Type of configuration for writer

array $options

Options for writer

Return value

mixed - Returns TRUE on success, PEAR_Error on failure.

Throws

Possible PEAR_Error values
Error code Error value Meaning Solution
"

Note

This function can not be called statically.

Example

This example shows how to convert a configuration from a php file which contains a php array to an xml file.

Using writeConfig()

<?php
$config 
= new Config();
$config->parseConfig(
                       
'/path/to/file.php',
               
'phparray',
                       array(
'name' => 'conf')
            );
$config->writeConfig(  '/path/to/file.xml',
                       
'xml',
                       array(
'name' => 'conf')
            );
?>



Вернуться к: Config class

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware