| 12345678910111213141516171819202122232425262728293031 | --- %YAML:1.0test: Simple Alias Examplebrief: >    If you need to refer to the same item of data twice,    you can give that item an alias.  The alias is a plain    string, starting with an ampersand.  The item may then    be referred to by the alias throughout your document    by using an asterisk before the name of the alias.    This is called an anchor.yaml: |    - &showell Steve    - Clark    - Brian    - Oren    - *showellphp: |    ['Steve', 'Clark', 'Brian', 'Oren', 'Steve']---test: Alias of a Mappingbrief: >    An alias can be used on any item of data, including    sequences, mappings, and other complex data types.yaml: |    - &hello        Meat: pork        Starch: potato    - banana    - *hellophp: |    [['Meat'=>'pork', 'Starch'=>'potato'], 'banana', ['Meat'=>'pork', 'Starch'=>'potato']]
 |