PHP
XML

XSLTProcessor::setProfiling

XSLTProcessor::setProfiling

(PHP >= 5.3.0)

XSLTProcessor :: setProfiling - 设置分析输出文件

描述

bool XSLTProcessor::setProfiling ( string $filename )

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

参数

filename

转储配置文件信息的文件路径。

返回值

TRUE成功或FALSE失败时返回。

示例

示例#1示例分析输出

<?php // Load the XML source $xml = new DOMDocument; $xml->load('collection.xml' $xsl = new DOMDocument; $xsl->load('collection.xsl' // Configure the transformer $proc = new XSLTProcessor; $proc->setProfiling('profiling.txt' $proc->importStyleSheet($xsl // attach the xsl rules 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

← XSLTProcessor::setParameter

XsltProcessor::setSecurityPrefs →