Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

yaml_emit_file(3) [php man page]

YAML_EMIT_FILE(3)							 1							 YAML_EMIT_FILE(3)

yaml_emit_file - Send the YAML representation of a value to a file

SYNOPSIS
bool yaml_emit_file (string $filename, mixed $data, [int $encoding = YAML_ANY_ENCODING], [int $linebreak = YAML_ANY_BREAK], [array $callbacks]) DESCRIPTION
Generate a YAML representation of the provided $data in the $filename. PARAMETERS
o $filename - Path to the file. o $data - The $data being encoded. Can be any type except a resource. o $encoding - Output character encoding chosen from YAML_ANY_ENCODING, YAML_UTF8_ENCODING, YAML_UTF16LE_ENCODING, YAML_UTF16BE_ENCODING. o $linebreak - Output linebreak style chosen from YAML_ANY_BREAK, YAML_CR_BREAK, YAML_LN_BREAK, YAML_CRLN_BREAK. o $callbacks - Content handlers for emitting YAML nodes. Associative array of classname => callable mappings. See emit callbacks for more details. RETURN VALUES
Returns TRUE on success. CHANGELOG
+--------+--------------------------------------+ |Version | | | | | | | Description | | | | +--------+--------------------------------------+ | 1.1.0 | | | | | | | The $callbacks parameter was added. | | | | +--------+--------------------------------------+ SEE ALSO
yaml_emit(3), yaml_parse(3). PHP Documentation Group YAML_EMIT_FILE(3)

Check Out this Related Man Page

YAML::Any(3)						User Contributed Perl Documentation					      YAML::Any(3)

NAME
YAML::Any - Pick a YAML implementation and use it. SYNOPSIS
use YAML::Any; $YAML::Indent = 3; my $yaml = Dump(@objects); DESCRIPTION
There are several YAML implementations that support the Dump/Load API. This module selects the best one available and uses it. ORDER
Currently, YAML::Any will choose the first one of these YAML implementations that is installed on your system: YAML::XS YAML::Syck YAML::Old YAML YAML::Tiny OPTIONS
If you specify an option like: $YAML::Indent = 4; And YAML::Any is using YAML::XS, it will use the proper variable: $YAML::XS::Indent. SUBROUTINES
Like all the YAML modules that YAML::Any uses, the following subroutines are exported by default: Dump Load and the following subroutines are exportable by request: DumpFile LoadFile METHODS
YAML::Any provides the following class methods. YAML::Any->order; This method returns a list of the current possible implementations that YAML::Any will search for. YAML::Any->implementation; This method returns the implementation the YAML::Any will use. This result is obtained by finding the first member of YAML::Any->order that is either already loaded in %INC or that can be loaded using "require". If no implementation is found, an error will be thrown. AUTHOR
Ingy doet Net <ingy@cpan.org> COPYRIGHT
Copyright (c) 2008. Ingy doet Net. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> POD ERRORS
Hey! The above document had some coding errors, which are explained below: Around line 191: Non-ASCII character seen before =encoding in 'doet'. Assuming UTF-8 perl v5.16.3 2012-07-13 YAML::Any(3)
Man Page