<?php
$xml = new DOMDocument();
$xml->load("php://stdin");
$xsl = new DOMDocument();
$xsl->load('compact-php.xsl');
$proc = new XSLTProcessor();
$proc->importStyleSheet($xsl);
$proc -> setParameter(null, 'name','value'); // unused in this example
print $proc->transformToXML($xml);
?>