yaml_emit_file
yaml_emit_file
Send the YAML representation of a value to a file
bool **yaml_emit_file** string $filename mixed $data int $encoding int $linebreak array $callbacks
Generate a YAML representation of the provided
in the .
data``filename
filenamePath to the file.
data
The being encoded. Can be any type except
a .
data``resource
encoding
Output character encoding chosen from
,
,
,
.
YAML_ANY_ENCODING``YAML_UTF8_ENCODING``YAML_UTF16LE_ENCODING``YAML_UTF16BE_ENCODING
linebreak
Output linebreak style chosen from
,
,
,
.
YAML_ANY_BREAK``YAML_CR_BREAK``YAML_LN_BREAK``YAML_CRLN_BREAK
callbacks
Content handlers for emitting YAML nodes. Associative
of classname => mappings. See
for more
details.
array``callableemit callbacks
Returns true on success.
yaml_emit``yaml_parse