Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > f40ace3caa7bc542ebd7f775493b18d0 > files > 43

php-yaml-1.1.0-1.x86_64.rpm

--TEST--
Yaml YtsBasicTests - Mixed Sequences
--DESCRIPTION--
Sequences can contain any YAML data,
including strings and other sequences.

--CREDITS--
Bryan Davis bpd@keynetics.com
# yaml.kwiki.org import/conversion
--SKIPIF--
<?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?>
--FILE--
<?php
  var_dump(yaml_parse('- apple
-
 - foo
 - bar
 - x123
- banana
- carrot
'));
?>
--EXPECT--
array(4) {
  [0]=>
  string(5) "apple"
  [1]=>
  array(3) {
    [0]=>
    string(3) "foo"
    [1]=>
    string(3) "bar"
    [2]=>
    string(4) "x123"
  }
  [2]=>
  string(6) "banana"
  [3]=>
  string(6) "carrot"
}