#!/usr/local/php5/bin/php load($arguments['xml']); $xsl = new DOMDocument; $xsl->load($arguments['xsl']); // Configure the transformer $proc = new XSLTProcessor; $proc->importStyleSheet($xsl); // attach the xsl rules $retValue = $proc->transformToXML($xml); } else{ //print out XML $retValue = file_get_contents($arguments['xml']); } return $retValue; } ?>