yaml_parse_url
yaml_parse_url
Parse a Yaml stream from a URL
mixed **yaml_parse_url** string $url int $pos int $ndocs array $callbacks
Convert all or part of a YAML document stream read from a URL to a PHP variable.
url
should be of the form "scheme://...". PHP
will search for a protocol handler (also known as a wrapper) for that
scheme. If no wrappers for that protocol are registered, PHP will emit
a notice to help you track potential problems in your script and then
continue as though filename specifies a regular file.
url
pos
Document to extract from stream ( for all
documents, for first document, ...).
-1``0
ndocs
If is provided, then it is filled with the
number of documents found in stream.
ndocs
callbacks
Content handlers for YAML nodes. Associative of YAML
tag => mappings. See
for more details.
array``callableparse callbacks
Returns the value encoded in in appropriate
PHP typereturn.falseforfailure. If is
an will be returned with one entry
for each document found in the stream.
url``pos``-1``array
Waarschuwing: > Processing untrusted user input with is dangerous if the use of is enabled for nodes using the tag. This behavior can be disabled by using the ini setting.
yaml_parse_url``unserialize``!php/object``yaml.decode_php
yaml_parse``yaml_parse_file``yaml_emit