Blame | Last modification | View Log | Download
--- %YAML:1.0test: Empty Sequencebrief: >You can represent the empty sequencewith an empty inline sequence.yaml: |empty: []php: |array('empty' => array())---test: Empty Mappingbrief: >You can represent the empty mappingwith an empty inline mapping.yaml: |empty: {}php: |array('empty' => array())---test: Empty Sequence as Entire Documentyaml: |[]php: |array()---test: Empty Mapping as Entire Documentyaml: |{}php: |array()---test: Null as Documentyaml: |~php: |null---test: Empty Stringbrief: >You can represent an empty stringwith a pair of quotes.yaml: |''php: |''