update : 2015.11.03
php.shukuma.com

검색:
 
 
Transform to a DOMDocument

XSLTProcessor::transformToDoc

(PHP 5)

XSLTProcessor::transformToDocTransform to a DOMDocument

설명

DOMDocument XSLTProcessor::transformToDoc ( DOMNode $doc )

Transforms the source node to a DOMDocument applying the stylesheet given by the XSLTProcessor::importStylesheet() method.

인수

doc

The node to be transformed.

반환값

The resulting DOMDocument or FALSE on error.

예제

Example #1 Transforming to a DOMDocument

<?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

echo trim($proc->transformToDoc($xml)->firstChild->wholeText);

?>

위 예제의 출력:

Hey! Welcome to Nicolas Eliaszewicz's sweet CD collection!

참고