定义和用法
XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 XSL 扩展是 XSL 标准的实现,用于使用 libxslt 库执行 XSTL 转换。
这个XSLTProcessor::__construct()函数用于创建 XSLTProcessor 类的对象。
用法
XSLTProcessor::__construct();
参数
该函数不接受任何参数。
返回值
此函数不返回任何值。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。
示例
下面的例子演示了如何创建一个 XSLTProcessor 对象——
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
print($proc->transformToXML($xml));
?>
这将产生以下结果 -
Title - JavaFX Authors: - Krishna - Rajeev
相关用法
- PHP XSLTProcessor::transformToDoc()用法及代码示例
- PHP XSLTProcessor::setParameter()用法及代码示例
- PHP XSLTProcessor::getSecurityPrefs()用法及代码示例
- PHP XSLTProcessor::setSecurityPrefs()用法及代码示例
- PHP XSLTProcessor::importStylesheet()用法及代码示例
- PHP XSLTProcessor::transformToXml()用法及代码示例
- PHP XMLReader::getParserProperty()用法及代码示例
- PHP XMLReader::open()用法及代码示例
- PHP XMLReader::moveToAttributeNs()用法及代码示例
- PHP XMLReader::moveToNextAttribute()用法及代码示例
- PHP XMLWriter startDtdAttlist()用法及代码示例
- PHP XMLWriter endDtdElement()用法及代码示例
- PHP XMLReader::moveToAttribute()用法及代码示例
- PHP XMLReader::next()用法及代码示例
- PHP XMLReader readOuterXml()用法及代码示例
- PHP XMLWriter endComment()用法及代码示例
- PHP XMLReader::setParserProperty()用法及代码示例
- PHP XMLWriter endDtdAttlist()用法及代码示例
- PHP XMLReader setRelaxNGSchema()用法及代码示例
- PHP XMLReader getAttributeNo()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - XSLTProcessor::_construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。