通过parse_ini_file()的动态配置参数

时间:2014-03-07 20:59:10

标签: php configuration ini

我有一段配置代码,如下所示:

        $config = array(
            'layer one' => array(
                'host' => 'one.example.com',
                'prefix' => '',
                'isRemote' => false
            ),
            'layer two' => array(
                'host' => 'two.example.com',
                'prefix' => '/Example/two/public/index.php/',
                'isRemote' => true
            ),
            'layer three' => array(
                'host' => 'three.example.com',
                'prefix' => '/Example/three/public/index.php/',
                'isRemote' => true
            )
        );

我正在尝试将此配置迁移到.ini文件。问题是,上面列出了任意数量的“层”,但它们都必须具有相同的属性集:host,prefix和isRemote。

parse_ini_file()加载的.ini文件中表示此内容的方式是什么?

感谢。

0 个答案:

没有答案