Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques statiques | |
static | parse ($input, $exceptionOnInvalidType=false, $objectSupport=false, $objectForMap=false) |
static | dump ($input, $inline=2, $indent=4, $exceptionOnInvalidType=false, $objectSupport=false) |
Yaml offers convenience methods to load and dump YAML.
|
static |
Dumps a PHP value to a YAML string.
The dump method, when supplied with an array, will do its best to convert the array into friendly YAML.
mixed | $input | The PHP value |
int | $inline | The level where you switch to inline YAML |
int | $indent | The amount of spaces to use for indentation of nested nodes |
bool | $exceptionOnInvalidType | True if an exception must be thrown on invalid types (a PHP resource or object), false otherwise |
bool | $objectSupport | True if object support is enabled, false otherwise |
Références $input.
|
static |
Parses YAML into a PHP value.
Usage:
$array = Yaml::parse(file_get_contents('config.yml')); print_r($array);
As this method accepts both plain strings and file names as an input, you must validate the input before calling this method. Passing a file as an input is a deprecated feature and will be removed in 3.0.
Note: the ability to pass file names to the Yaml::parse method is deprecated since Symfony 2.2 and will be removed in 3.0. Pass the YAML contents of the file instead.
string | $input | Path to a YAML file or a string containing YAML |
bool | $exceptionOnInvalidType | True if an exception must be thrown on invalid types false otherwise |
bool | $objectSupport | True if object support is enabled, false otherwise |
bool | $objectForMap | True if maps should return a stdClass instead of array() |
ParseException | If the YAML is not valid |
Références $file, $input, et ParseException\setParsedFile().