PHP - Funzione yaml_parse ()
La funzione yaml_parse () può analizzare uno stream YAML.
Sintassi
mixed yaml_parse( string $input [, int $pos = 0 [, int &$ndocs [, array $callbacks = null ]]] )
La funzione yaml_parse () può convertire tutto o parte di un flusso di documenti YAML in una variabile PHP.
La funzione yaml_parse () può restituire un valore codificato in input nel tipo PHP appropriato o false in caso di errore. Se pos è -1, può essere restituito un array con una voce per ogni documento trovato in un flusso.
Esempio
<?php
$yaml = <<<EOD
---
invoice: 34843
date: "2001-01-23"
bill-to: &id001
given: Chris
family: Dumars
address:
lines: |-
458 Walkman Dr.
Suite #292
city: Royal Oak
state: MI
postal: 48046
ship-to: *id001
product:
- sku: BL394D
quantity: 4
description: Basketball
price: 450
- sku: BL4438H
quantity: 1
description: Super Hoop
price: 2392
tax: 251.420000
total: 4443.520000
comments: Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.
...
EOD;
$parsed = yaml_parse($yaml);
var_dump($parsed);
?>