yaml_parse()
yaml_parse - Parse a YAML stream
Syntax
mixed yaml_parse (
string $input,
int $pos,
int &$ndocs,
array $callbacks)
Arguments
- input - The string to parse as a YAML document stream.
- pos - Document to extract from stream ( -1for all documents, 0for first document,...).
- ndocs - If ndocs is provided, then it is filled with the number of documents found in stream.
- callbacks - Content handlers for YAML nodes. Associative array of YAML tag => callback mappings.
Description
Convert all or part of a YAML document stream to a PHP variable.
Version
PHP PECL yaml >= 0.4.0
Return value
Returns the value encoded in input in appropriate PHP type. NULL is returned if the input cannot be decoded. If pos is -1an array will be returned with one entry for each document found in the stream.