Php и Xml - что требуется для работы?
Пример тестового файла вязл из мануала.
<?php
// Allocate a new XSLT processor
$xh = xslt_create();
// Process the document, returning the result into the $result variable
$result = xslt_process($xh, 'sample.xml', 'sample.xsl');
if ($result) {
echo "SUCCESS, sample.xml was transformed by sample.xsl into the \$result";
echo " variable, the \$result variable has the following contents\n
\n";
echo "<pre>\n";
echo $result;
echo "</pre>\n";
} else {
echo "Sorry, sample.xml could not be transformed by sample.xsl into";
echo " the \$result variable the reason is that " . xslt_error($xh);
echo " and the error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>
Выходит не те модули подключены в PHP? У меня на виде стоит версия 5.0.2 с поддержкой DOM/XML, Schema Support, libXML, EXSLT и еще каких-то модулей, связанных с XML. Если надо могу привести полный список модулей.
Кто-нибудь может мне подсказать, что мне надо еще установить для нормальной работы с XML и XSLT?
Или что я упустил?
Спасибо.