(PHP 5 >= 5.0.2, PHP 7)
interface_exists — Vérifie si une interface a été définie
$interface_name
[, bool $autoload
= true
] )Vérifie si une interface a été définie.
interface_name
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_name
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
}
}
?>