Приглашаем посетить
Ахматова (ahmatova.niv.ru)

Chapter 8.  Using XML

Previous
Table of Contents
Next

Chapter 8. Using XML

After the hype, the Extensible Markup Language (XML) is now really used almost everywhere. An application that receives a lot of buzz is Web Services, a technology that is covered in detail in Chapter 9, "Communicating with Others." However, XML can be used elsewhere, as well. It is a good format to store any kind of data.

The tasks behind using XML are always the same: reading data from XML and writing data into it. So this chapter focuses on these tasks and shows how to implement them.

Unfortunately, PHP 4's XML support was somewhat limited. Some extensions did not prove to be very stable. This changed drastically with PHP 5 and a revamped XML support. Therefore, the main focus of this chapter is on PHP 4. In PHP 5.1, some new features will be added that are already covered in this chapter.

As the sample XML file and format in this chapter, the XML from the following code reuses the quotes database example from the previous chapter. As you can see, <quotes> is the root element, and each quote (including its author and the year the phrase was coined) is contained in a <quote> element.

The sample XML file (quotes.xml; excerpt)
<?xml version="1.0" encoding="ISO-8859-1" ?>
<quotes>
  <quote year="1991">
    <phrase>Hasta la vista, baby!</phrase>
    <author>Arnold Schwarzenegger</author>
  </quote>
</quotes>


Previous
Table of Contents
Next