xiaolin/laravel-config

0.0.4 2018-08-08 07:45 UTC

This package is not auto-updated.

Last update: 2024-04-26 09:41:29 UTC


README

文件内容

local:
    mysql:
        host: 127.0.0.1
        port: 3306
dev:
    mysql:
        host: 127.0.0.1
        port: 3306
        
## 读取

```php
<?php
$file   = 'config.yml';
Yaml::getInstance()->load($file);

写入

<?php
$file   = 'config.yml';
$data   = Yaml::getInstance()->save($file, $data);
$data['mysql']['port'] = 3307;
yml_write($file,$data);