Symfony2 API
Class

Symfony\Component\Yaml\Parser

class Parser

Parser parses YAML strings to convert them to PHP arrays.

Methods

__construct(integer $offset)

Constructor

mixed parse(string $value, Boolean $exceptionOnInvalidType = false, Boolean $objectSupport = false)

Parses a YAML string to a PHP value.

Details

at line 33
public __construct(integer $offset)

Constructor

Parameters

integer $offset The offset of YAML document (used for line numbers in error messages)

at line 49
public mixed parse(string $value, Boolean $exceptionOnInvalidType = false, Boolean $objectSupport = false)

Parses a YAML string to a PHP value.

Parameters

string $value A YAML string
Boolean $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise
Boolean $objectSupport true if object support is enabled, false otherwise

Return Value

mixed A PHP value

Exceptions

ParseException If the YAML is not valid