downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionClass::hasProperty> <ReflectionClass::hasConstant
Last updated: Fri, 20 Nov 2009

view this page in

ReflectionClass::hasMethod

(PHP 5 >= 5.1.0)

ReflectionClass::hasMethodChecks if method is defined

Descrierea

public bool ReflectionClass::hasMethod ( string $name )

Checks whether a specific method is defined in a class.

Parametri

name

Name of the method being checked for.

Valorile întroarse

TRUE if it has the method, otherwise FALSE

Exemple

Example #1 ReflectionClass::hasMethod example

<?php
Class {
    public function 
publicFoo() {
        return 
true;
    }

    protected function 
protectedFoo() {
        return 
true;
    }

    private function 
privateFoo() {
        return 
true;
    }

    static function 
staticFoo() {
        return 
true;
    }
}

$rc = new ReflectionClass("C");

var_dump($rc->hasMethod('publicFoo'));

var_dump($rc->hasMethod('protectedFoo'));

var_dump($rc->hasMethod('privateFoo'));

var_dump($rc->hasMethod('staticFoo'));

// C should not have method bar
var_dump($rc->hasMethod('bar'));

// Method names are case insensitive
var_dump($rc->hasMethod('PUBLICfOO'));
?>

Exemplul de mai sus va afişa:

bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(true)

Vedeţi de asemenea



add a note add a note User Contributed Notes
ReflectionClass::hasMethod
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites