array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.yaml-emit-file.php', 1 => 'yaml_emit_file', 2 => 'Send the YAML representation of a value to a file', ), 'up' => array ( 0 => 'ref.yaml.php', 1 => 'Funzioni Yaml', ), 'prev' => array ( 0 => 'function.yaml-emit.php', 1 => 'yaml_emit', ), 'next' => array ( 0 => 'function.yaml-parse.php', 1 => 'yaml_parse', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/yaml/functions/yaml-emit-file.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL yaml >= 0.5.0)
yaml_emit_file — Send the YAML representation of a value to a file
$filename,$data,$encoding = YAML_ANY_ENCODING,$linebreak = YAML_ANY_BREAK,$callbacks = null
Generate a YAML representation of the provided data
in the filename.
filenamePath to the file.
data
The data being encoded. Can be any type except
a 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.
callbacksContent handlers for emitting YAML nodes. Associative array of classname => callable mappings. See emit callbacks for more details.
Returns true on success.
| 版本 | 说明 |
|---|---|
| PECL yaml 1.1.0 |
The callbacks parameter was added.
|