XSLTProcessor::transformToUri

(PHP 5, PHP 7, PHP 8)

XSLTProcessor::transformToUriURI に変換する

説明

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

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, transformToDoc, transformToXml, transformToUri, DOMDocument, ノード, 発生, エラー, バイト