• PHP Video Tutorials

PHP - YAML Data Serialization Functions



This extension can implement the YAML Ain't Markup Language (YAML) data serialization standard. The parsing and emiting are handled by the LibYAML library.

Example

<?php
   $addr = array(
      "given" => "Chris",
      "family"=> "Dumars",
      "address"=> array(
         "lines"=> "458 Walkman Dr.
         Suite #292",
         "city"=> "Royal Oak",
         "state"=> "MI",
         "postal"=> 48046,
      ),
   );
   $invoice = array (
      "invoice"=> 34843,
      "date"=> "2001-01-23",
      "bill-to"=> $addr,
      "ship-to"=> $addr,
      "product"=> array(
         array(
            "sku"=> "BL394D",
            "quantity"=> 4,
            "description"=> "Basketball",
            "price"=> 450,
         ),
         array(
            "sku"=> "BL4438H",
            "quantity"=> 1,
            "description"=> "Super Hoop",
            "price"=> 2392,
         ),
      ),
      "tax"=> 251.42,
      "total"=> 4443.52,
      "comments"=> "Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.",
   );

   // generate a YAML representation of the invoice
   $yaml = yaml_emit($invoice);
   var_dump($yaml);

   // convert the YAML back into a PHP variable
   $parsed = yaml_parse($yaml);

   // check that roundtrip conversion produced an equivalent structure
   var_dump($parsed == $invoice);
?>
Sr.No Function & Description
1

This function can send a YAML representation of value to a file.

2

yaml_emit() Function

This function can return a YAML representation of a value.

3

yaml_parse_file() Function

This Function file can parse a YAML stream from a file.

4

yaml_parse() Function

This function can parse a YAML stream.

5

yaml_parse_url() Function

This function can parse a Yaml stream from an URL

php_function_reference.htm
Advertisements