XML
  Home arrow XML arrow Page 4 - XSL Transformation With PHP And Sablotron
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  
XML

XSL Transformation With PHP And Sablotron
By: Harish Kamath, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 6
    2001-11-30


    Table of Contents:
  • XSL Transformation With PHP And Sablotron
  • Getting Down To Business
  • Start It Up
  • Handling Things Better
  • An Evening At The Moulin Rouge
  • Mistakes Happen
  • Publish Or Die!
  • Endzone

  • 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


    XSL Transformation With PHP And Sablotron - Handling Things Better
    ( Page 4 of 8 )

    Now, though the script you just saw is pretty primitive, it gets the job done. However, when you're working on a real project, you need to be more professional in your approach. So let's take this to the next level, with a slightly different version of the script above:

    <?php




    // the files
    $xmlfile = "person.xml";
    $xslfile = "person.xsl";




    // create the XSLT processor
    $xslthandler = xslt_create() or die("Houston, we
    have a problem. No XSLT
    handler available. Mission aborted.");




    // process the two files to get the desired output
    xslt_run($xslthandler, $xslfile,
    $xmlfile);




    // get and print the result
    echo xslt_fetch_result($xslthandler);




    // free the resources occupied by the handlers
    xslt_free($xslthandler);




    ?>

    This is a slightly more structured approach. After defining the filenames for the XML and XSLT content, I've used the xslt_create() function to create a new instance of the XSLT processor and return a handle to it.

    // create the XSLT processor
    $xslthandler = xslt_create() or die("Houston, we
    have a problem. No XSLT
    handler available. Mission aborted.");

    This handle is used in all subsequent XSLT operations.

    Next, I've used the xslt_run() function to read and process the XML and XSLT files, and store the results of the processing in the default result buffer.

    // process the two files to get the desired output
    xslt_run($xslthandler, $xslfile,
    $xmlfile);

    Once the processing is complete and the output dumped into the default result buffer, I've used the xslt_fetch_result() function to fetch the contents of the buffer and print it to the browser.

    // get and print the result
    echo xslt_fetch_result($xslthandler);

    Finally, it's a good idea to clean things up by destroying the handle created during this process, so as to not occupy valuable memory.

    // free the resources occupied by the handlers
    xslt_free($xslthandler);

    The xslt_free() function frees up the memory occupied by the XSLT processor.

    Using xslt_run() is often preferable to using xslt_process(), since the xslt_run() function is happy to accept file references to the XML and XSLT data as arguments (as opposed to xslt_process(), which only accepts string variables). Using xslt_run() can, therefore, often save you a few lines of code when performing server-side transformation with PHP.

     
     
    >>> More XML Articles          >>> More By Harish Kamath, (c) Melonfire
     

       

    XML ARTICLES

    - Flex Array Collection Sort and Filtering
    - The Flex Tree Control
    - Flex List Controls
    - Working with Flex and Datagrids
    - How to Set Up Podcasting and Vodcasting
    - Creating an RSS Reader Application
    - Building an RSS File
    - An Introduction to XUL Part 6
    - An Introduction to XUL Part 5
    - An Introduction to XUL Part 4
    - An Introduction to XUL Part 3
    - An Introduction to XUL Part 2
    - An Introduction to XUL Part 1
    - XML Matters: Practical XML Data Design and M...
    - Practical XML Data Design and Manipulation f...





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