Forum und email

XSLTProcessor::transformToURI

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

XSLTProcessor::transformToURI — URI に変換する

説明

XSLTProcessor
int transformToURI ( DOMDocument $doc , string $uri )

XSLTProcessor::importStylesheet メソッドで与えられたスタイルシートを適用し、 ソースノードを URI に変換します。

パラメータ

doc

変換される文章を指定します。 The transformed document.

uri

返り値

書き込まれたバイト数。エラーが発生した場合は FALSE

Example#1 HTML ファイルへの変換

<?php

// XML ソースをロードする
$xml = new DOMDocument;
$xml->load('collection.xml');

$xsl = new DOMDocument;
$xsl->load('collection.xsl');

// 変換の設定を行う
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // XSL ルールを適用する

$proc->transformToURI($xml'file:///tmp/out.html');

?>