略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: XSLTProcessor::__construct

2024-04-28

XSLTProcessor::__construct

(PHP 5, PHP 7, PHP 8)

XSLTProcessor::__constructCreates a new XSLTProcessor object

说明

XSLTProcessor::__construct()

Creates a new XSLTProcessor object.

参数

此函数没有参数。

范例

示例 #1 Creating an XSLTProcessor

<?php

$xsldoc 
= new DOMDocument();
$xsldoc->load($xsl_filename);

$xmldoc = new DOMDocument();
$xmldoc->load($xml_filename);

$xsl = new XSLTProcessor();
$xsl->importStyleSheet($xsldoc);
echo 
$xsl->transformToXML($xmldoc);

?>
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/xsltprocessor.construct.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3