Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
bug 2780 regression
3
--FILE--
4
<?php
5
    set_include_path(dirname(dirname(__FILE__)) . ':' . get_include_path());
6
    require_once 'Config.php' ;
7
    $c1 = new Config_Container('section', 'root');
8
    $c2 = new Config_Container();
9
 
10
    $c1->addItem($c2);
11
    // Convert your ini file to a php array config
12
    echo $c1->toString('phparray', array('name' => 'php_ini'));
13
?>
14
--EXPECT--