(PHP 5)
XSLTProcessor::transformToUri — 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');
?>