Yaml 函数
在线手册:中文  英文

yaml_emit_file

(PECL yaml >= 0.5.0)

yaml_emit_fileSend the YAML representation of a value to a file

说明

bool yaml_emit_file ( string $filename , mixed $data [, int $encoding = YAML_ANY_ENCODING [, int $linebreak = YAML_ANY_BREAK [, array $callbacks ]]] )

Generate a YAML representation of the provided data in the filename.

参数

filename

Path 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.

callbacks

Content handlers for emitting YAML nodes. Associative array of classname => callable mappings. See emit callbacks for more details.

返回值

Returns TRUE on success.

更新日志

版本 说明
1.1.0 The callbacks parameter was added.

参见


Yaml 函数
在线手册:中文  英文

用户评论:

M. Lamers (2012-07-10 10:19:35)

I'm getting an error with PHP version 5.3.3-7+squeeze13:
Warning: yaml_emit_file(): not yet implemented in file.php on line 1.

Not sure why, but here is a quick fix:

<?php
  $aDataToWrite 
= array ( 'user' => 'test' );
  
$sYAMLdata yaml_emit $aDataToWrite );

  
$fp fopen 'file.yml''w' );
  
fwrite $fp$sYAMLdata );
  
fclose $fp );
?>

That all, happy coding!

易百教程