XSL
在线手册:中文 英文
PHP手册

范例

Table of Contents


XSL
在线手册:中文 英文
PHP手册
PHP手册 - N: 范例

用户评论:

hipertracker at gmail dot com (28-Mar-2011 01:49)

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));
?>

contato at log dot blog dot br (16-Oct-2008 01:43)

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.