반성이란 무엇인가요?
PHP 실행 상태에서 PHP 프로그램 분석을 확장하고 클래스, 메소드, 속성, 매개변수 등에 대한 세부 정보를 주석을 포함하여 내보내거나 추출하는 것을 말합니다. 이렇게 동적으로 정보를 얻고 객체의 메소드를 동적으로 호출하는 기능을 리플렉션 API라고 합니다. Reflection은 객체 지향 패러다임에서 메타 모델을 조작하기 위한 API이며 매우 강력하며 복잡하고 확장 가능한 애플리케이션을 구축하는 데 도움이 될 수 있습니다.
플러그인 자동 로드, 문서 자동 생성, 심지어 PHP 언어 확장에도 사용할 수 있습니다.
PHP 리플렉션 API는 프로그램의 메타데이터에 액세스하거나 관련 주석과 상호 작용하는 데 도움이 되는 여러 클래스로 구성됩니다. 리플렉션의 도움으로 클래스에 의해 구현된 메서드를 얻고, 클래스의 인스턴스를 생성하고(새로 생성하는 것과는 다름), 메서드를 호출하고(일반 호출과도 다름), 매개변수를 전달하고, 정적 메서드를 동적으로 호출할 수 있습니다. 클래스의 메소드.
Reflection API는 일부 클래스, 예외 및 인터페이스를 포함하는 PHP의 내장 OOP 기술 확장으로, 함께 사용하면 다른 클래스, 인터페이스, 메서드, 속성, 메서드 및 확장을 분석하는 데 도움이 될 수 있습니다. 이러한 oop 확장을 리플렉션이라고 합니다.
이 글에서는 주로 PHP Reflection(Reflection)의 사용 예를 소개합니다. 이 글에서는 ReflectionClass, ReflectionExtension, ReflectionFunction, ReflectionMethod, ReflectionObject, ReflectionParameter 및 기타 클래스의 사용 예를 설명합니다. 클래스, 확장, 메서드, 함수, 개체, 매개 변수, 속성에 대한 세부 정보를 가져오는 데 사용됩니다.
ReflectionClass 클래스는 속성, 메소드, 문서 주석 등 클래스 관련 정보를 얻습니다.
<?php class Person { /** * For the sake of demonstration, we"re setting this private */ private $_allowDynamicAttributes = false; /** type=primary_autoincrement */ protected $id = 0; /** type=varchar length=255 null */ protected $name; /** type=text null */ protected $biography; public function getId() { return $this->id; } public function setId($v) { $this->id = $v; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } public function getBiography() { return $this->biography; } public function setBiography($v) { $this->biography = $v; } } //导出类 ReflectionClass::export('Person'); $r = new ReflectionClass('Person'); //获取所有属性 print_r($r->getProperties()); /** * 获取指定属性 * ReflectionProperty::IS_STATIC * ReflectionProperty::IS_PUBLIC * ReflectionProperty::IS_PROTECTED * ReflectionProperty::IS_PRIVATE */ print_r($r->getProperties(ReflectionProperty::IS_PRIVATE)); //获取注释 print_r($r->getProperty('id')->getDocComment()); //获取方法 print_r($r->getMethods());
ReflectionExtension 클래스는 확장 관련 정보를 가져오는 데 사용됩니다.
$re = new ReflectionExtension('Reflection'); print_r($re->getClasses()); //扩展的所有类 print_r($re->getClassNames()); //扩展所有类名 $dom = new ReflectionExtension('mysql'); print_r($dom->getConstants());//扩展常量 print_r($dom->getDependencies());//该扩展依赖 print_r($dom->getFunctions());//扩展方法 print_r($dom->getINIEntries());//扩展ini信息 print_r($dom->getName());//扩展名称 print_r($dom->getVersion());//扩展版本 print_r($dom->info());//扩展信息 print_r($dom->isPersistent());//是否是持久扩展 print_r($dom->isTemporary()); //是否是临时扩展
ReflectionFunction 클래스 사용자는 함수 관련 정보를 가져옵니다
$rf = new ReflectionFunction('array_merge'); foreach($rf->getParameters() as $item) { echo $item . PHP_EOL; }
ReflectionMethod 클래스 사용자 획득 메소드 관련 정보
class Person { public $name; /** * get name of person */ public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $rm = new ReflectionMethod('Person', 'getName'); print_r($rm->isPublic()); print_r($rm->getDocComment());
class Person { public $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $a = new Person('a'); $ro = new ReflectionObject($a); print_r($ro->getMethods());
class Person { public $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $p = new ReflectionParameter(array('Person', 'setName'), 0); print_r($p->getPosition()); //0 print_r($p->getName()); //v
rreee
위 내용은 PHP 리플렉션(Reflection) 사용 샘플 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!