PHP Doku:: Beispiele - xsl.examples.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationXSLBeispiele

Ein Service von Reinhard Neidl - Webprogrammierung.

XSL

<<Vordefinierte Konstanten

collection.xml>>


UnterSeiten:

Beispiele

Inhaltsverzeichnis


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
contato at log dot blog dot br
16.10.2008 2: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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)