Some Pets in XML
Here is the XML source file:
<?xml version="1.0" encoding="utf-8"?>
<pets>
<cat>
<name>Lucy</name>
<color>tabby</color>
<breed>shorthair</breed>
</cat>
<dog name="Fido" color="brown" breed="mutt"/>
<snake>
<name>Jacob</name>
<color>Black and Yellow</color>
<breed>Garter</breed>
</snake>
</pets>
Here are the XML elements extracted from the source file
as arrays:
cat
name: Lucy
color: tabby
breed: shorthair
dog
name: Fido
color: brown
breed: mutt
snake
name: Jacob
color: Black and Yellow
breed: Garter