yaml_emit_file
(PECL yaml >= 0.5.0)
Send the YAML representation of a value to a file
Description
Generate a YAML representation of the provided data in the filename.
Parameters
filenamePath to the file.
dataThe
databeing encoded. Can be any type except aresource.encodingOutput character encoding chosen from
YAML_ANY_ENCODING,YAML_UTF8_ENCODING,YAML_UTF16LE_ENCODING,YAML_UTF16BE_ENCODING.linebreakOutput linebreak style chosen from
YAML_ANY_BREAK,YAML_CR_BREAK,YAML_LN_BREAK,YAML_CRLN_BREAK.callbacksContent handlers for emitting YAML nodes. Associative
arrayof classname =>callablemappings. See emit callbacks for more details.
Return Values
Returns true on success.
Changelog
| Version | Description |
|---|---|
| PECL yaml 1.1.0 | The callbacks parameter was added. |