(PHP 5 >= 5.0.2, PHP 7, PHP 8)
interface_exists — Vérifie si une interface a été définie
$interface
, bool $autoload
= true
): boolVérifie si une interface a été définie.
interface
Le nom de l'interface
autoload
Si l'on doit appeler autoload ou non par défaut.
Retourne true
si l'interface fournie par le paramètre
interface
a été définie,
false
sinon.
Exemple #1 Exemple avec interface_exists()
<?php
// Vérifie si l'interface existe avant de l'utiliser
if (interface_exists('MyInterface')) {
class MyClass implements MyInterface
{
// Méthodes
}
}
?>