Reflection
PHP Manual

ReflectionClass Sınıfı

(PHP 5, PHP 7)

Giriş

ReflectionClass sınıfı bir sınıf hakkında bilgi edinilmesini sağlar.

Sınıf Sözdizimi

ReflectionClass implements Reflector {
/* Sabitler */
const integer IS_IMPLICIT_ABSTRACT = 16 ;
const integer IS_EXPLICIT_ABSTRACT = 32 ;
const integer IS_FINAL = 64 ;
/* Özellikler */
public $name ;
/* Yöntemler */
__construct ( string $değiştirge )
public static string export ( mixed $değiştirge [, bool $ihracet = false ] )
public mixed getConstant ( string $isim )
public array getConstants ( void )
public object getConstructor ( void )
public array getDefaultProperties ( void )
public string getDocComment ( void )
public int getEndLine ( void )
public ReflectionExtension getExtension ( void )
public string getExtensionName ( void )
public string getFileName ( void )
public array getInterfaceNames ( void )
public array getInterfaces ( void )
public object getMethod ( string $isim )
public array getMethods ([ string $süzgeç ] )
public int getModifiers ( void )
public string getName ( void )
public string getNamespaceName ( void )
public object getParentClass ( void )
public array getProperties ([ int $süzgeç ] )
public ReflectionProperty getProperty ( string $isim )
public string getShortName ( void )
public int getStartLine ( void )
public array getStaticProperties ( void )
public mixed getStaticPropertyValue ( string $isim [, string $öntanımlı ] )
public array getTraitAliases ( void )
public array getTraitNames ( void )
public array getTraits ( void )
public bool hasConstant ( string $isim )
public bool hasMethod ( string $isim )
public bool hasProperty ( string $isim )
public bool implementsInterface ( string $arayüz )
public bool inNamespace ( void )
public bool isAbstract ( void )
public bool isAnonymous ( void )
public bool isCloneable ( void )
public bool isFinal ( void )
public bool isInstance ( string $nesne )
public bool isInstantiable ( void )
public bool isInterface ( void )
public bool isInternal ( void )
public bool isIterateable ( void )
public bool isSubclassOf ( string $sınıf )
public bool isTrait ( void )
public bool isUserDefined ( void )
public object newInstance ( mixed $değiştirgeler [, mixed $... ] )
public object newInstanceArgs ([ array $değiştirgeler ] )
public object newInstanceWithoutConstructor ( void )
public void setStaticPropertyValue ( string $isim , string $değer )
public string __toString ( void )
}

Özellikler

name

Sınıfın ismi. Salt-okunur olup, yazılmaya çalışılırsa ReflectionException istisnası oluşur.

Öntanımlı Sabitler

ReflectionClass Değiştiricileri

ReflectionClass::IS_IMPLICIT_ABSTRACT

Bazı soyut yöntemler içerdiğinden sınıfın soyut olduğunu belirtir.

ReflectionClass::IS_EXPLICIT_ABSTRACT

Sınıfın tanımından dolayı soyut olduğunu belirtir.

ReflectionClass::IS_FINAL

Sınıfın bir final sınıf olduğunu belirtir.

İçindekiler


Reflection
PHP Manual