Reflection
PHP Manual

ReflectionMethod Sınıfı

(PHP 5, PHP 7)

Giriş

ReflectionMethod sınıfı bir yöntem hakkında bilgi edinilmesini sağlar.

Sınıf Sözdizimi

ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
/* Sabitler */
const integer IS_STATIC = 1 ;
const integer IS_PUBLIC = 256 ;
const integer IS_PROTECTED = 512 ;
const integer IS_PRIVATE = 1024 ;
const integer IS_ABSTRACT = 2 ;
const integer IS_FINAL = 4 ;
/* Özellikler */
public $name ;
public $class ;
/* Yöntemler */
__construct ( string $sınıf_veya_yöntem [, string $isim ] )
public static string export ( string $sınıf , string $isim [, bool $return = false ] )
public Closure getClosure ( object $object )
public ReflectionClass getDeclaringClass ( void )
public int getModifiers ( void )
public void getPrototype ( void )
public mixed invoke ( object $nesne , string $değiştirgeler )
public mixed invokeArgs ( string $nesne , array $değiştirgeler )
public bool isAbstract ( void )
public bool isConstructor ( void )
public bool isDestructor ( void )
public bool isFinal ( void )
public bool isPrivate ( void )
public bool isProtected ( void )
public bool isPublic ( void )
public bool isStatic ( void )
public void setAccessible ( bool $accessible )
public string __toString ( void )
/* Miras alınan yöntemler */
final private void ReflectionFunctionAbstract::__clone ( void )
public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass ( void )
public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void )
public string ReflectionFunctionAbstract::getName ( void )
public ReflectionType ReflectionFunctionAbstract::getReturnType ( void )
abstract public void ReflectionFunctionAbstract::__toString ( void )
}

Özellikler

name

Yöntemin ismi.

class

Sınıfın ismi

Öntanımlı Sabitler

ReflectionMethod Değiştiricileri

ReflectionMethod::IS_STATIC

Yöntemin duruk olduğunu belirtir.

ReflectionMethod::IS_PUBLIC

Yöntemin genel bir yöntem olduğunu belirtir

ReflectionMethod::IS_PROTECTED

Yöntemin korunmuş olduğunu belirtir.

ReflectionMethod::IS_PRIVATE

Yöntemin özel olduğunu belirtir.

ReflectionMethod::IS_ABSTRACT

Yöntemin soyut olduğunu belirtir.

ReflectionMethod::IS_FINAL

Yöntemin bir final yöntem olduğunu belirtir.

İçindekiler


Reflection
PHP Manual