This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Yaml/Yaml.php

106 lines
2.6 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-01-04 14:26:20 +00:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Exception\ParseException;
2010-01-04 14:26:20 +00:00
/**
* Yaml offers convenience methods to load and dump YAML.
*
* @author Fabien Potencier <fabien@symfony.com>
2011-03-24 08:02:09 +00:00
*
* @api
2010-01-04 14:26:20 +00:00
*/
class Yaml
2010-01-04 14:26:20 +00:00
{
/**
2011-06-14 11:19:35 +01:00
* Parses YAML into a PHP array.
*
2011-06-14 11:19:35 +01:00
* The parse method, when supplied with a YAML stream (string or file),
* will do its best to convert YAML in a file into a PHP array.
*
* Usage:
* <code>
2011-06-14 11:19:35 +01:00
* $array = Yaml::parse('config.yml');
* print_r($array);
* </code>
*
2011-02-13 14:31:54 +00:00
* @param string $input Path to a YAML file or a string containing YAML
*
* @return array The YAML converted to a PHP array
*
* @throws \InvalidArgumentException If the YAML is not valid
2011-03-24 08:02:09 +00:00
*
* @api
*/
2011-06-14 11:19:35 +01:00
static public function parse($input)
2010-01-04 14:26:20 +00:00
{
$file = '';
// if input is a file, process it
if (strpos($input, "\n") === false && is_file($input)) {
if (false === is_readable($input)) {
throw new \InvalidArgumentException(sprintf(
'The service file "%s" is not readable.',
$input
));
}
$file = $input;
ob_start();
$retval = include($input);
$content = ob_get_clean();
// if an array is returned by the config file assume it's in plain php form else in YAML
$input = is_array($retval) ? $retval : $content;
}
// if an array is returned by the config file assume it's in plain php form else in YAML
if (is_array($input)) {
return $input;
}
$yaml = new Parser();
try {
return $yaml->parse($input);
} catch (ParseException $e) {
if ($file) {
$e->setParsedFile($file);
}
throw $e;
}
2010-01-04 14:26:20 +00:00
}
/**
* Dumps a PHP array to a YAML string.
*
* The dump method, when supplied with an array, will do its best
* to convert the array into friendly YAML.
*
* @param array $array PHP array
* @param integer $inline The level where you switch to inline YAML
*
* @return string A YAML string representing the original PHP array
2011-03-24 08:02:09 +00:00
*
* @api
*/
2011-06-14 11:16:59 +01:00
static public function dump($array, $inline = 2)
2010-01-04 14:26:20 +00:00
{
$yaml = new Dumper();
2010-01-04 14:26:20 +00:00
return $yaml->dump($array, $inline);
}
2010-01-04 14:26:20 +00:00
}