首页 > PHP资讯 > PHP培训技术 > PHP的XSL转换速度优化 XSLcache

PHP的XSL转换速度优化 XSLcache

PHP培训技术

XSLcache 是一个 PHP 的扩展,用来加速 XSL 转换的速度。

使用方法:

<?php
$xsltpath = '/home/harrisj/example.xsl';

$xslt = new xsltCache;
$xslt->importStyleSheet($xsltpath);
$xml = DOMDocument::loadXML($source_doc);
print $xslt->transformToXML($xml);
?>
本文由欣才IT学院整理发布,未经许可,禁止转载。