PHP | ReflectionClass hasMethod() Function

The ReflectionClass::hasMethod() function is an inbuilt function in PHP which is used to check the specified method is present or not.
Syntax:
bool ReflectionClass::hasMethod( string $name )
Parameters: This function accepts a single parameter $name which holds the name of the method which are being checked.
Return Value: This function returns TRUE if the specified method is present, otherwise returns FALSE.
Below programs illustrate the ReflectionClass::hasMethod() function in PHP:
Program 1:
php
<?php// Initialising a user-defined Class Departmentsclass Departments { public function CSE() { } final protected function ECE() { } private static function EE() { } static function IT() { } private function Mechanical() { }}// Using ReflectionClass() over the// user-defined class Departments$class = new ReflectionClass('Departments');// Calling the hasMethod() function$methods = $class->hasMethod('CSE');// Getting the value true or falsevar_dump($methods);?> |
Output:
bool(true)
Program 2:
php
<?php // Initialising a user-defined Class Companyclass Company { public function zambiatek() { } static function gfg() { }} // Using ReflectionClass() over the// user-defined class Company$class = new ReflectionClass('Company'); // Calling the hasMethod() function$methods = $class->hasMethod('TCS'); // Getting the value true or falsevar_dump($methods);?> |
Output:
bool(false)
Reference: https://php.net/manual/en/reflectionclass.hasmethod.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!



