Skip to content

Instantly share code, notes, and snippets.

@pchatterjee
Created October 5, 2019 00:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pchatterjee/fdc5f70237b4280c65ea89e30cb14ed8 to your computer and use it in GitHub Desktop.
Save pchatterjee/fdc5f70237b4280c65ea89e30cb14ed8 to your computer and use it in GitHub Desktop.
<?php
$xml = new DOMDocument();
$xml->load('quotes.xml');
$xsl = new DOMDocument;
$xsl->load('quotes_to_html.xsl');
$proc = new XSLTProcessor();
$proc->importStyleSheet($xsl);
echo $proc->transformToXML($xml);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment