Коментарии

Here's a very simple example on how to use PHP5 to transform a XML file using a XSL file.

<?php

   $xslDoc 
= new DOMDocument();
   
$xslDoc->load("collection.xsl");

   
$xmlDoc = new DOMDocument();
   
$xmlDoc->load("collection.xml");

   
$proc = new XSLTProcessor();
   
$proc->importStylesheet($xslDoc);
   echo 
$proc->transformToXML($xmlDoc);

?>

For the sake of simplicity there's no error handling on this code. I hope this helps.
2008-10-15 20:43:50
http://php5.kiev.ua/manual/ru/xsl.examples.html
This is more convenient, no files nor verbose variables needed:

<?php
  $xslt 
= new XSLTProcessor();
 
$xslt->importStylesheet(new SimpleXMLElement($xslt_string));
  echo 
$xslt->transformToXml(new SimpleXMLElement($xml_string));
?>
2011-03-28 08:49:42
http://php5.kiev.ua/manual/ru/xsl.examples.html

    Поддержать сайт на родительском проекте КГБ