XSLTProcessor
PHP Manual

XSLTProcessor::transformToUri

(PHP 5)

XSLTProcessor::transformToUriURI に変換する

説明

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

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

パラメータ

doc

変換する文章を指定します。

uri

変換先の URI。

返り値

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

例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');

?>

参考


XSLTProcessor
PHP Manual