ReflectionMethod Sınıfı
ReflectionMethod
&reftitle.intro;
ReflectionMethod sınıfı bir yöntem hakkında bilgi
edinilmesini sağlar.
&reftitle.classsynopsis;
ReflectionMethod
extends
ReflectionFunctionAbstract
&Constants;
public
const
int
ReflectionMethod::IS_STATIC
public
const
int
ReflectionMethod::IS_PUBLIC
public
const
int
ReflectionMethod::IS_PROTECTED
public
const
int
ReflectionMethod::IS_PRIVATE
public
const
int
ReflectionMethod::IS_ABSTRACT
public
const
int
ReflectionMethod::IS_FINAL
&Properties;
public
string
class
&InheritedProperties;
&Methods;
&InheritedMethods;
&reftitle.properties;
name
Yöntemin ismi.
class
Sınıfın ismi
&reftitle.constants;
ReflectionMethod Değiştiricileri
ReflectionMethod::IS_STATIC
Yöntemin statik olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 1 idi.
ReflectionMethod::IS_PUBLIC
Yöntemin public olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 256 idi.
ReflectionMethod::IS_PROTECTED
Yöntemin protected olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 512 idi.
ReflectionMethod::IS_PRIVATE
Yöntemin private olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 1024 idi.
ReflectionMethod::IS_ABSTRACT
Yöntemin abstract olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 2 idi.
ReflectionMethod::IS_FINAL
Yöntemin bir final olduğunu belirtir.
PHP 7.4.0 öncesinde, bu değer 4 idi.
Sabitlerin değerleri PHP sürümleri arasında farklılık gösterebilir.
Bu bakımdan sabitler değerleriyle değil isimleriyle kullanılmalıdır.
&reftitle.changelog;
&Version;
&Description;
8.0.0
ReflectionMethod::export kaldırıldı.
&reference.reflection.entities.reflectionmethod;