Ben xslt kullanarak bir HTML iç içe liste olarak bir xml dosyasını yazdırmak isteyen kulüpler, ve bildiğim kadarıyla kod doğru olduğunu biliyorum, ancak ben bu hatayı alıyorum
Ölümcül hata: tanımlanmamış işlev xslt_create Çağrı ()
Hangi sanırım XSLT işlevleri etkin havn't demektir. Nasıl bu işlevler içinde PHP etkinleştirebilirim? Ben (JavaScript kütüphaneleri çalışır yolu gibi) eklemek gerekir ya da daha karmaşık bir şey olduğunu bir php dosyası var mı? Ben MediaTemple ile ev sahipliği ediyorum.
İşte kullanıyorum php kodu:
<?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);
?>
Şimdiden teşekkürler!