(PHP >= 5.3.0, PHP 7, PHP 8)
XSLTProcessor::setProfiling — 设置性能分析输出文件
filename
转储性能分析信息的路径文件。
始终返回 true
。
示例 #1 示例性能分析输出
<?php
// 加载 XML 源
$xml = new DOMDocument;
$xml->load('collection.xml');
$xsl = new DOMDocument;
$xsl->load('collection.xsl');
// 配置转换器
$proc = new XSLTProcessor;
$proc->setProfiling('profiling.txt');
$proc->importStyleSheet($xsl); // 附加 xsl 规则
echo trim($proc->transformToDoc($xml)->firstChild->wholeText);
?>
上面的代码将在性能分析文件中生成以下信息
number match name mode Calls Tot 100us Avg 0 cd 2 3 1 1 collection 1 1 1 Total 3 4