XSLTProcessor::hasExsltSupport
(PHP 5 >= 5.0.4)
XSLTProcessor::hasExsltSupport — Indique si PHP utilise EXSLT
Description
bool
hasExsltSupport
( void
)
Cette méthode détermine si PHP a été compilé avec la bibliothèque » EXSLT.
Valeurs de retour
Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.
Exemples
Exemple #1 Test du support EXSLT
<?php
$proc = new XSLTProcessor;
if (!$proc->hasExsltSupport()) {
die('Le support d\'EXSLT n\'est pas disponible');
}
// Travaux avec EXSLT
?>
XSLTProcessor::hasExsltSupport
There are no user contributed notes for this page.
