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.
$datasrc
       Datasource to write to
$configType
       Type of configuration for writer
$options
       Options for writer
     mixed -
     Returns TRUE on success,
PEAR_Error on failure.
    
| Error code | Error value | Meaning | Solution | 
|---|---|---|---|
| " | 
This function can not be called statically.
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')
            );
?>