Brak opisu

sunhao fe08a6fbcc 初始 5 lat temu
..
Exception fe08a6fbcc 初始 5 lat temu
Tests fe08a6fbcc 初始 5 lat temu
.gitignore fe08a6fbcc 初始 5 lat temu
CHANGELOG.md fe08a6fbcc 初始 5 lat temu
Dumper.php fe08a6fbcc 初始 5 lat temu
Escaper.php fe08a6fbcc 初始 5 lat temu
Inline.php fe08a6fbcc 初始 5 lat temu
LICENSE fe08a6fbcc 初始 5 lat temu
Parser.php fe08a6fbcc 初始 5 lat temu
README.md fe08a6fbcc 初始 5 lat temu
Unescaper.php fe08a6fbcc 初始 5 lat temu
Yaml.php fe08a6fbcc 初始 5 lat temu
composer.json fe08a6fbcc 初始 5 lat temu
phpunit.xml.dist fe08a6fbcc 初始 5 lat temu

README.md

Yaml Component

YAML implements most of the YAML 1.2 specification.

use Symfony\Component\Yaml\Yaml;

$array = Yaml::parse(file_get_contents(filename));

print Yaml::dump($array);

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Yaml/
$ composer.phar install
$ phpunit