XSLcache 介绍
XSLcache 是一个 PHP 的扩展,用来加速 XSL 转换的速度。
使用方法:
<?PHP
$xsltpath = '/home/harrisj/example.xsl';
$xslt = new xsltCache;
$xslt->importStyleSheet($xsltpath);
$xml = DOMDocument::loadXML($source_doc);
print $xslt->transformToXML($xml);
?>
XSLcache 官网
http://dbslayer.org/projects/xslcache