ja chcąc wydrukować plik XML się jako zagnieżdżonej listy HTML za pomocą XSLT, io ile wiem, że kod jest poprawny, jednak dostaję ten błądJak włączyć funkcje XSLT w PHP 5?
Fatal error: Call to undefined function xslt_create()
Które Przypuszczam oznacza Funkcje xslt nie zostały włączone. Jak włączyć te funkcje w PHP? Czy istnieje plik php, który muszę dołączyć (podobnie jak działa biblioteka JavaScript), czy jest to coś bardziej skomplikowanego? Jestem hostowany z MediaTemple.
Oto kod php Używam:
<?php
// Allocate a new XSLT processor
$xh = xslt_create();
// Process the document, returning the result into the $result variable
$result = xslt_process($xh, 'armstrong.xml', 'familyToNestedList.xsl');
if ($result) {
print "SUCCESS, sample.xml was transformed by sample.xsl into the \$result";
print " variable, the \$result variable has the following contents\n<br>\n";
print "<pre>\n";
print $result;
print "</pre>\n";
}
else {
print "Sorry, sample.xml could not be transformed by sample.xsl into";
print " the \$result variable the reason is that " . xslt_error($xh) .
print " and the error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>
Z góry dzięki!
http://www.php.net/manual/en/xslt.installation.php – DampeS8N