(PHP 5, PHP 7)
ReflectionClass::export — Exports a class
Exports a reflected class.
argument
내보낼 reflection
return
TRUE
로 설정하면 export를 반환하고,
반대의 경우는 버립니다. FALSE
로 설정(기본값)은 반대를 수행합니다.
return
인수를
TRUE
로 설정하면, export를 string으로 반환합니다.
그렇지 않으면 NULL
을 반환합니다.
Example #1 Basic usage of ReflectionClass::export()
<?php
class Apple {
public $var1;
public $var2 = 'Orange';
public function type() {
return 'Apple';
}
}
ReflectionClass::export('Apple');
?>
위 예제의 출력 예시:
Class [ <user> class Apple ] { @@ php shell code 1-8 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [2] { Property [ <default> public $var1 ] Property [ <default> public $var2 ] } - Methods [1] { Method [ <user> public method type ] { @@ php shell code 5 - 7 } } }