PHP Doku:: Prüft, ob die EXSLT-Unterstützung aktiviert ist - xsltprocessor.hasexsltsupport.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationXSLDie XSLTProcessor-KlasseXSLTProcessor::hasExsltSupport

Ein Service von Reinhard Neidl - Webprogrammierung.

Die XSLTProcessor-Klasse

<<XSLTProcessor::getParameter

XSLTProcessor::importStylesheet>>

XSLTProcessor::hasExsltSupport

(PHP 5 >= 5.0.4)

XSLTProcessor::hasExsltSupportPrüft, ob die EXSLT-Unterstützung aktiviert ist

Beschreibung

bool XSLTProcessor::hasExsltSupport ( void )

Diese Methode ermittelt, ob PHP mit Unterstützung für die » EXSLT-Bibliothek kompiliert wurde.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 Prüfen auf EXSLT-Unterstützung

<?php

$proc 
= new XSLTProcessor;
if (!
$proc->hasExsltSupport()) {
    die(
'EXSLT nicht verfügbar');
}

// Weitere Verarbeitung ..

?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)