PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

XSLTProcessor::getParameter> <XSLTProcessor
Last updated: Fri, 14 Nov 2008

view this page in

XSLTProcessor::__construct

(No version information available, might be only in CVS)

XSLTProcessor::__constructCreates a new XSLTProcessor object

Описание

__construct ( void )

Creates a new XSLTProcessor object.

Список параметров

This function has no parameters.

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Примеры

Пример #1 Creating an XSLTProcessor

<?php

$doc 
= new DOMDocument();
$xsl = new XSLTProcessor();

$doc->load($xsl_filename);
$xsl->importStyleSheet($doc);

$doc->load($xml_filename);
echo 
$xsl->transformToXML($doc);

?>



add a note add a note User Contributed Notes
XSLTProcessor::__construct
There are no user contributed notes for this page.

XSLTProcessor::getParameter> <XSLTProcessor
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites