PHP | ReflectionClass implementsInterface() Function Last Updated : 11 Dec, 2019 Comments Improve Suggest changes Like Article Like Report The ReflectionClass::implementsInterface() function is an inbuilt function in PHP which is used to check the specified interface is present or not. Syntax: bool ReflectionClass::implementsInterface( string $interface ) Parameters: This function accepts a single parameter $interface which holds the specified interface which are being checked. Return Value: This function returns true on success or false on failure. Below programs illustrate the ReflectionClass::implementsInterface() function in PHP: Program 1: php <?php // Defining some interfaces interface Colleges { } interface Departments { } interface Students { } interface Companies { } // Initialising a class of Interfaces class Interfaces implements Colleges, Departments, Students, Companies { } // Using ReflectionClass over the class Interfaces $A = new ReflectionClass("Interfaces"); // Calling the implementsInterface() function // over the Interface 'Colleges' $B = $A->implementsInterface('Colleges'); // Getting the value true or false var_dump($B); ?> Output: bool(true) Program 2: php <?php // Defining a SuperClass interface Company interface Company { public function GFG(); } // Defining a different interface Company1 interface Company1 { public function GeeksforGeeks(); } // Defining a subclass Departments class Departments implements Company { public function GFG() {} } // Using ReflectionClass() over the // subclass Departments $reflect = new ReflectionClass('Departments'); // Calling implementsInterface() function $A = $reflect->implementsInterface('Company1'); // Getting the value either true or false var_dump($A); ?> Output: bool(false) Reference: https://www.php.net/manual/en/reflectionclass.implementsinterface.php Create Quiz Comment K Kanchan_Ray Follow 0 Improve K Kanchan_Ray Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP- ReflectionClass PHP- Reflection +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like