PHP
  Home arrow PHP arrow Page 2 - Introducing SimpleXML in PHP 5
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PHP

Introducing SimpleXML in PHP 5
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 41
    2006-06-12


    Table of Contents:
  • Introducing SimpleXML in PHP 5
  • Reading XML files with the “simplexml_load_file()” function
  • Accessing file nodes as array elements
  • Creating a basic XML parsing class

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Introducing SimpleXML in PHP 5 - Reading XML files with the “simplexml_load_file()” function
    ( Page 2 of 4 )

    In order to begin tasting the power of the “simpleXML” extension, I’ll start with a simple example, which shows how to read the contents of a basic XML file. This extension will allow you do this in different ways, but in this case, I’ll use the “simplexml_load_file()” function, in conjunction with the following sample XML file:

    <?xml version="1.0" encoding="iso-8859-1"?>
    <users>
    <user>
    <name>John Doe</name>
    <address>Binary Avenue 1234 FL</address>
    <email>john@john-domain.com</email>
    </user>
    <user>
    <name>Janet Smith</name>
    <address>Crazy Bits Road 4568 CA</address>
    <email>janet@janet-domain.com</email>
    </user>
    <user>
    <name>James Smith</name>
    <address>Socket Boulevard 7894 OH</address>
    <email>james@james-domain.com</email>
    </user>
    <user>
    <name>Silvia Wilson</name>
    <address>Protocol Avenue 5652 NY</address>
    <email>silvia@silvia-domain.com</email>
    </user>
    <user>
    <name>Alejandro Gervasio</name>
    <address>Boulevard of Objects 10101 AR</address>
    <email>alejandro@alejandro-domain.com</email>
    </user>
    </users>

    Fine, now that I have a simple XML file to work with, have a look at the following script, which first reads the nodes of this file and next displays them by using a “foreach” loop:

    // displays all the file nodes
    if(!$xml=simplexml_load_file('users.xml')){
        trigger_error('Error reading XML file',E_USER_ERROR);
    }
    echo 'Displaying contents of XML file...<br />';
    foreach($xml as $user){
        echo 'Name: '.$user->name.' Address: '.$user->address.'
    Email: '.$user->email.'<br />';
    }

    As you can see, the previous script loads the contents of the XML file by using the “simplexml_load_file()” function and then loops over the corresponding nodes, outputting the following values:

    Displaying contents of XML file...
    Name: John Doe Address: Binary Avenue 1234 FL Email: john@john-
    domain.com
    Name: Janet Smith Address: Crazy Bits Road 4568 CA Email: janet@janet-domain.com
    Name: James Smith Address: Socket Boulevard 7894 OH Email:
    james@james-domain.com
    Name: Silvia Wilson Address: Protocol Avenue 5652 NY Email:
    silvia@silvia-domain.com
    Name: Alejandro Gervasio Address: Boulevard of Objects 10101 AR
    Email: alejandro@alejandro-domain.com

    That was really easy, right? The cool “simplexml_load_file()” function loads the contents of a specific XML file passed as an argument onto an object, which exposes the different file nodes as properties. In order to access the nodes in question, all you have to do is use the “->” notation, and you’re done.

    Now, let me go one step further and demonstrate how to access the contents of a single node. The example shown below teaches you how to display the contents of all the <name> nodes included within the previous XML file:

    // displays contents of <name> nodes
    if(!$xml=simplexml_load_file('users.xml')){
        trigger_error('Error reading XML file',E_USER_ERROR);
    }
    echo 'Displaying user names of XML file...<br />';
    foreach($xml as $user){
        echo 'Name: '.$user->name.'<br />';
    }

    In this case, all the <name> nodes are accessed as object properties, and displayed as follows:

    Displaying user names of XML file...
    Name: John Doe
    Name: Janet Smith
    Name: James Smith
    Name: Silvia Wilson
    Name: Alejandro Gervasio

    Definitely, you’ll have to agree with me that the “simpleXML” extension makes it really easy to parse XML files, at least when you only need to perform basic tasks on a given file, such as reading all of the file nodes or accessing a particular one.

    However, there are still more useful things to explore regarding the use of the “simplexml_load_file()” function. Therefore, in the next section of this tutorial, I’ll show you how to access a specific node within an XML file by using an array notation. Please continue reading to learn more.



     
     
    >>> More PHP Articles          >>> More By Alejandro Gervasio
     

       

    PHP ARTICLES

    - Implementing Factory Methods in PHP 5
    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek