XSLTProcessor::setProfiling

(PHP >= 5.3.0, PHP 7, PHP 8)

XSLTProcessor::setProfiling设置性能分析输出文件

描述

public XSLTProcessor::setProfiling(?string $filename): true

设置在处理样式表时输出性能分析信息的文件。

参数

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

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top