JSS — Command Reference

$start_time = microtime(true);

$root = "../data/jss/xml";
$xslDoc = new DOMDocument();
$xslDoc->load($root . “/commands.xsl”);

$xmlDoc = new DOMDocument();
$xmlDoc->load($root . “/commands.xml”);

$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);

echo $proc->transformToXML($xmlDoc);

$end_time = microtime(true);

$total_time = $end_time – $start_time;

//echo “\n”;
?>

1 Comment so far

  1. [...] also started writing documentation for the JSS commands. It is only partially completed but can still be helpful. Check out the JSS homepage for other [...]

Leave a reply

*