Reflection
PHP Manual

ReflectionParameter Sınıfı

(PHP 5, PHP 7)

Giriş

ReflectionParameter sınıfı bir işlev veya yöntemin değiştirgeleri hakkında bilgi edinilmesini sağlar.

Bir işlevin değiştirgelerini incelemek için önce ReflectionFunction veya ReflectionMethod sınıfının bir örneğini oluşturmalı, sonra da bu sınıfların ReflectionFunctionAbstract::getParameters() yöntemini kullanarak değiştirge dizisini almalısınız.

Sınıf Sözdizimi

ReflectionParameter implements Reflector {
/* Özellikler */
public $name ;
/* Yöntemler */
public bool allowsNull ( void )
public bool canBePassedByValue ( void )
final private void __clone ( void )
__construct ( string $işlev , string $değiştirge )
public static string export ( string $işlev , string $değiştirge [, bool $ihracet ] )
public ReflectionClass getClass ( void )
public ReflectionClass getDeclaringClass ( void )
public ReflectionFunction getDeclaringFunction ( void )
public mixed getDefaultValue ( void )
public string getDefaultValueConstantName ( void )
public string getName ( void )
public int getPosition ( void )
public ReflectionType getType ( void )
public bool hasType ( void )
public bool isArray ( void )
public bool isCallable ( void )
public bool isDefaultValueAvailable ( void )
public bool isDefaultValueConstant ( void )
public bool isOptional ( void )
public bool isPassedByReference ( void )
public bool isVariadic ( void )
public string __toString ( void )
}

Özellikler

name

İsim.

İçindekiler


Reflection
PHP Manual