DOMImplementation::hasFeature
(PHP 5, PHP 7, PHP 8)
DOMImplementation::hasFeature — Test if the DOM implementation implements a specific feature
Beschreibung
$feature
, string $version
): bool
Test if the DOM implementation implements a specific
feature
.
You can find a list of all features in the » Conformance section of the DOM specification.
Parameter-Liste
-
feature
-
The feature to test.
-
version
-
The version number of the
feature
to test. In level 2, this can be either2.0
or1.0
.
Rückgabewerte
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.
Fehler/Exceptions
Vor PHP 8.0.0
konnte diese Methode statisch aufgerufen werden, gab dabei aber einen Fehler der Stufe E_DEPRECATED
aus.
Seit PHP 8.0.0 löst der statische Aufruf dieser Methode eine Error-Exception aus.
Beispiele
Beispiel #1 Testing your DOM Implementation
<?php
$features = array(
'Core' => 'Core module',
'XML' => 'XML module',
'HTML' => 'HTML module',
'Views' => 'Views module',
'Stylesheets' => 'Style Sheets module',
'CSS' => 'CSS module',
'CSS2' => 'CSS2 module',
'Events' => 'Events module',
'UIEvents' => 'User interface Events module',
'MouseEvents' => 'Mouse Events module',
'MutationEvents' => 'Mutation Events module',
'HTMLEvents' => 'HTML Events module',
'Range' => 'Range module',
'Traversal' => 'Traversal module'
);
foreach ($features as $key => $name) {
if (DOMImplementation::hasFeature($key, '2.0')) {
echo "Has feature $name\n";
} else {
echo "Missing feature $name\n";
}
}
?>