(No version information available, might be only in CVS)
XSLTProcessor::hasExsltSupport — Verifica se o PHP tem suporte a EXSLT
Este método verifica se o PHP tem suporte a » EXSLT library.
Retorna TRUE em caso de sucesso ou FALSE em falhas.
Example#1 Testando o suporte a EXSLT
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('EXSLT support not available');
}
// do EXSLT stuff here ..
?>