私はXMLは、XSLTを使用してHTMLネストされたリストのようにしてファイルを印刷したいと思ってるし、私の知る限りでは、コードがしかし、私は意味推測このエラーPHP 5でXSLT関数を有効にするにはどうすればよいですか?
Fatal error: Call to undefined function xslt_create()
を得ている、正しいですxslt関数は有効になっていません。 PHP内でこれらの機能を有効にするにはどうすればよいですか?私は(Javascriptライブラリのように)インクルードする必要のあるPHPファイルがありますか、それとももっと複雑なものですか?私はMediaTempleでホストされています。事前に
<?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);
?>
ありがとう:
はここで私が使用しているPHPコードです!
http://www.php.net/manual/en/xslt.installation.php – DampeS8N