yaml_emit

PECL yaml >= 0.5.0
yaml_emit - Returns the YAML representation of a value
Manual
Code Examples

yaml_emit(
     mixed$data,
     [int$encoding = YAML_ANY_ENCODING],
     [int$linebreak = YAML_ANY_BREAK],
     [array$callbacks = null]
): string

Generate a YAML representation of the provided data.

Parameters

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.

Return Values

Returns a YAML encoded string on success.

Changelog

Version Description
PECL yaml 1.1.0 The callbacks parameter was added.

Related Functions

Example of yaml_emit

Show all examples for yaml_emit

PHP Version:


Function yaml_emit:

YAML Data Serialization Functions

Most used PHP functions