Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

xslt_create

XSLT Funktionen

    Befehl:
resource xslt_create ( void )


    Beschreibung:
Erzeugt eine neue XSLT-Prozessor-Ressource für die Verarbeitung durch andere XSLT-Funktionen und gibt sie zurück.


    Aktiv in Version:
(PHP 4 >= 4.3.0)

    Siehe auch:
Gibt einen XSLT-Processor frei
 

xslt_create() - Beispiel:


Eingabe:
<?php
function xml2html($xmldata, $xsl)
{
    /* $xmldata -> Ihr XML */
    /* $xsl -> XSLT-Datei */

    $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 Funktionen