Home Common Problem method_exists detailed explanation

method_exists detailed explanation

Dec 04, 2023 am 10:52 AM
method_exists

method_exists() is a PHP function used to check whether a class method exists. Its syntax is as follows:

method_exists(mixed $object, string $method_name): bool
Copy after login

Parameter description:

$object: The object example or class name to be checked.

$method_name: The method name to be checked.

Return value:

If the method pointed to by $method_name has been defined in the object class pointed to by $object, then true is returned.

Otherwise return false.

Example usage:

class MyClass {  
    public function myMethod() {  
        // 方法实现  
    }  
}  
  
$obj = new MyClass();  
var_dump(method_exists($obj, 'myMethod')); // 输出:bool(true)  
  
$anotherObj = new stdClass();  
var_dump(method_exists($anotherObj, 'myMethod')); // 输出:bool(false)
Copy after login

In the above example, we first define a class named MyClass and define a method named myMethod in it. Then, we create an instance object $obj of MyClass and use the method_exists() function to check whether the myMethod method exists in the $obj object. Since the method is defined in the MyClass class, it returns true.

Next, we create a stdClass object $anotherObj and use the method_exists() function to check whether the myMethod method exists in the $anotherObj object. Since the myMethod method is not defined in the stdClass class, false is returned.

The above is the detailed content of method_exists detailed explanation. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)