PHP - XSLTProcessor::transformToXml() 函数



定义和用法

XML 是一种用于在网络上共享数据的标记语言,XML 既可供人类阅读,也可供机器读取。XSL 扩展是 XSL 标准的实现,用于使用 libxslt 库执行 XSTL 转换。

XSLTProcessor::transformToXml() 函数接受 DOMNode 类的对象作为参数,并通过应用样式表将其转换为字符串。

语法

XSLTProcessor::transformToXml($doc);

参数

序号 参数和说明
1

doc(必填)

这是 DOMNode 类的一个对象,表示要转换的文档。

返回值

如果成功,此函数返回一个字符串值,表示转换的结果;如果失败,则返回一个布尔值 FALSE。

PHP 版本

此函数首次引入 PHP 5 版本,并在所有后续版本中均有效。

示例

以下是此函数的示例:

sample.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="example.xsl"?>
<Tutorial>
   <Title>JavaFX</Title>
   <Authors>
      <Author>Krishna</Author>
      <Author>Rajeev</Author>
   </Authors>
   <Body>Sample text</Body>
</Tutorial>

sample.xsl

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="text"/>

   <xsl:template match="/">
      Title - <xsl:value-of select="/Tutorial/Title"/>
      Authors: <xsl:apply-templates select="/Tutorial/Authors/Author"/>
   </xsl:template>

   <xsl:template match="Author">
      - <xsl:value-of select="." />
   </xsl:template>
</xsl:stylesheet>

sample.php

<?php
   //Loading an XSL document
   $xsl = new DOMDocument();
   $xsl->load("sample.xsl");

   //Loading an XML document
   $xml = new DOMDocument();
   $xml->load("sample.xml");

   //Creating an XSLTProcessor
   $proc = new XSLTProcessor();

   //Importing the XSL document
   $proc->importStyleSheet($xsl);

   //Transforming the style to XML
   $res = $proc->transformToXml($xml);
   print($res);
?>

这将产生以下结果:

Title - JavaFX
   Authors:
   - Krishna
   - Rajeev
php_function_reference.htm
广告