A way to check if you can call an method over a class:
<?php
function is_public_method(
/* string */$className,
/* string */$method
){
$classInstance = new ReflectionClass($className);
if ($classInstance->hasMethod($method)) {
return false;
}
$methodInstance = $instance->getMethod($method);
return $methodInstance->isPublic();
}
?>
ReflectionClass::hasMethod
(PHP 5 >= 5.1.0)
ReflectionClass::hasMethod — بررسی تعریف شدن متد
Description
public bool ReflectionClass::hasMethod
( string $name
)
بررسی تعریف شدن متد در کلاس.
Parameters
- name
-
نام متد برای بررسی.
Return Values
TRUE اگر متد تعریف شده باشد در غیر این صورت FALSE
Examples
Example #1 مثال ReflectionClass::hasMethod()
<?php
Class C {
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'));
?>
The above example will output:
bool(true) bool(true) bool(true) bool(true) bool(false) bool(true)
See Also
- ReflectionClass::hasConstant() - بررسی تعریف شدن ثابت
- ReflectionClass::hasProperty() - بررسی تعریف شدن خاصیت
michaelgranados at gmail dot com ¶
1 year ago
phoenix at todofixthis dot com ¶
2 years ago
Parent methods (regardless of visibility) are also available to a ReflectionObject. E.g.,
<?php
class ParentObject {
public function parentPublic( ) {
}
private function parentPrivate( ) {
}
}
class ChildObject extends ParentObject {
}
$Instance = new ChildObject();
$Reflector = new ReflectionObject($Instance);
var_dump($Reflector->hasMethod('parentPublic')); // true
var_dump($Reflector->hasMethod('parentPrivate')); // true
?>
