Ho un problema con questo codice:

codice:
<?php

$xh = xslt_create();

$xmlFile = 'collection.xml';
$xslFile = 'collection.xsl';

if ( $risulatato = xslt_process( $xh, $xmlFile, $xslFile ) ) {

	echo( $risulatato );

} else {

	echo 'Si è verificato un ERRORE! ' . xslt_error($xh) . '';
	
}

xslt_free($xh);

?>
e ottengo quest'errore:

Fatal error: Call to undefined function: xslt_create() in .../collection.php on line 3