(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