okami-chen/yaml-config

1.0.6 2018-07-16 05:22 UTC

This package is not auto-updated.

Last update: 2024-04-28 03:14:38 UTC


README

config.yml文件内容

local:
    mysql:
        host: 127.0.0.1
        port: 3306
dev:
    mysql:
        host: 127.0.0.1
        port: 3306
qa:
    mysql:
        host: 127.0.0.1
        port: 3306
pre:
    mysql:
        host: 127.0.0.1
        port: 3306
gr:
    mysql:
        host: 127.0.0.1
        port: 3306
yc:
    mysql:
        host: 127.0.0.1
        port: 3306
production:
    mysql:
        host: 127.0.0.1
        port: 3306

读取

<?php
$file   = 'config.yml';
$data   = Yaml::load($file);

写入

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

config.yml变化后的内容

local:
    mysql:
        host: 127.0.0.1
        port: 3307
dev:
    mysql:
        host: 127.0.0.1
        port: 3306
qa:
    mysql:
        host: 127.0.0.1
        port: 3306
pre:
    mysql:
        host: 127.0.0.1
        port: 3306
gr:
    mysql:
        host: 127.0.0.1
        port: 3306
yc:
    mysql:
        host: 127.0.0.1
        port: 3306
production:
    mysql:
        host: 127.0.0.1
        port: 3306