Web aym.pekori.to

xslt_create

(PHP 4 >= 4.0.3, PECL)

xslt_create -- 新規のXSLTプロセッサを作成する

説明

resource xslt_create ( void )

新規にXSLTプロセッサリソースを作成し、返します。このリソースは、 他のXSLT関数による処理で使用されます。

例 1. xslt_create() の例

<?php
function xml2html($xmldata, $xsl)
{
    
/* $xmldata -> あなたの XML */
    /* $xsl -> XSLT ファイル */

    
$path = 'include';
    
$arguments = array('/_xml' => $xmldata);
    
$xsltproc = xslt_create();
    
xslt_set_encoding($xsltproc, 'ISO-8859-1');
    
$html =
        
xslt_process($xsltproc, 'arg:/_xml', "$path/$xsl", NULL, $arguments);

    if (empty(
$html)) {
       die(
'XSLT processing error: '. xslt_error($xsltproc));
    }
    
xslt_free($xsltproc);
    return
$html;
}
?>

参考

xslt_free().