(No version information available, might be only in CVS)
XSLTProcessor::hasExsltSupport — Indique si PHP utilise EXSLT
Cette méthode détermine si PHP a été compilé avec la bibliothèque » EXSLT.
Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.
Exemple #1 Test du support EXSLT
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('EXSLT support not available');
}
// Travaux avec EXSLT
?>