XSLTProcessor::transformToUri
XSLTProcessor::转换为 ToUri
(PHP 5, PHP 7)
XSLTProcessor :: transformToUri - 转换为URI
描述
int XSLTProcessor::transformToURI ( DOMDocument $doc , string $uri )
将源节点转换为应用由 XSLTProcessor :: importStylesheet()方法给出的样式表的 URI。
参数
doc
要转换的文件。
uri
转换的目标URI。
返回值
返回写入的字节数或FALSE
发生错误的次数。
示例
示例#1转换为 HTML 文件
<?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->importStyleSheet($xsl // attach the xsl rules
$proc->transformToURI($xml, 'file:///tmp/out.html'
?>
也可以看看
- XSLTProcessor :: transformToDoc() - 转换为 DOMDocument
- XSLTProcessor :: transformToXml() - 转换为 XML
← XSLTProcessor::transformToDoc
XSLTProcessor::transformToXML →