PHP5에는 클래스, 인터페이스, 함수, 메서드 및 확장을 리버스 엔지니어링하는 기능이 추가된 완벽한 리플렉션 API가 있습니다.
반성이란 무엇인가요?
PHP가 실행 중인 상태에서 PHP 프로그램을 확장하여 분석하고 클래스, 메소드, 속성, 매개변수 등에 대한 세부 정보를 주석을 포함하여 내보내거나 추출하는 것을 말합니다. 이렇게 동적으로 정보를 얻고 객체의 메소드를 동적으로 호출하는 기능을 리플렉션 API라고 합니다. Reflection은 객체 지향 패러다임에서 메타 모델을 조작하기 위한 API이며 매우 강력하며 복잡하고 확장 가능한 애플리케이션을 구축하는 데 도움이 될 수 있습니다.
플러그인 자동 로드, 문서 자동 생성 등의 용도로 사용되며 PHP 언어 확장에도 사용할 수 있습니다.
PHP 리플렉션 API는 프로그램의 메타데이터에 액세스하거나 관련 주석과 상호 작용하는 데 도움이 되는 여러 클래스로 구성됩니다. 리플렉션의 도움으로 클래스에 의해 구현된 메서드를 얻고, 클래스의 인스턴스를 생성하고(새로 생성하는 것과는 다름), 메서드를 호출하고(일반 호출과도 다름), 매개변수를 전달하고, 정적 메서드를 동적으로 호출할 수 있습니다. 클래스의 메소드.
Reflection API는 일부 클래스, 예외 및 인터페이스를 포함하는 PHP에 내장된 OOP 기술 확장입니다. 함께 사용하면 다른 클래스, 인터페이스, 메서드, 속성, 메서드 및 확장을 분석하는 데 도움이 될 수 있습니다. 이러한 OOP 확장을 리플렉션이라고 합니다.
우리는 일반적으로 ReflectionClass 클래스와 ReflectionMethod 클래스를 사용합니다. 예:
<?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; } }
1. ReflectionClass를 통해 Person 클래스에 대해 다음 정보를 얻을 수 있습니다.
1.상수 상수
2.속성 이름
3.메서드 이름 정적
4.정적 속성
5.네임스페이스
6.Person 클래스가 최종 클래스인지 추상 클래스인지 여부
7. Person 클래스에 특정 메서드가 있나요?
이를 반영하려면 클래스 이름 "Person"을 ReflectionClass에 전달하세요.
$class = new ReflectionClass('Person'); // 建立 Person这个类的反射类 $instance = $class->newInstanceArgs($args); // 相当于实例化Person 类
1) 속성(속성) 가져오기:
$properties = $class->getProperties(); foreach ($properties as $property) { echo $property->getName() . "\n"; } // 输出: // _allowDynamicAttributes // id // name // biography
기본적으로 ReflectionClass는 개인 속성과 보호 속성을 포함한 모든 속성을 가져옵니다. 비공개 속성만 가져오려면 추가 매개변수를 전달해야 합니다.
$private_properties = $class->getProperties(ReflectionProperty::IS_PRIVATE);
사용 가능한 매개변수 목록:
ReflectionProperty::IS_STATIC ReflectionProperty::IS_PUBLIC ReflectionProperty::IS_PROTECTED ReflectionProperty::IS_PRIVATE
속성 이름은 $property-를 통해 얻을 수 있습니다. >getName() .
2) 댓글 받기:
getDocComment를 통해 속성에 작성된 댓글을 받을 수 있습니다.
foreach ($properties as $property) { if ($property->isProtected()) { $docblock = $property->getDocComment(); preg_match('/ type\=([a-z_]*) /', $property->getDocComment(), $matches); echo $matches[1] . "\n"; } } // Output: // primary_autoincrement // varchar // text
3) 클래스의 메소드 가져오기
getMethods() 来获取到类的所有methods。 hasMethod(string) 是否存在某个方法 getMethod(string) 获取方法
4) 클래스의 메소드 실행:
$instance->getName(); // 执行Person 里的方法getName // 或者: $method = $class->getmethod('getName'); // 获取Person 类中的getName方法 $method->invoke($instance); // 执行getName 方法 // 或者: $method = $class->getmethod('setName'); // 获取Person 类中的setName方法 $method->invokeArgs($instance, array('snsgou.com'));
2. ReflectionMethod를 통해 특정 메소드에 대한 Person 클래스 정보를 얻을 수 있습니다:
1. "public", "protected", "private" 또는 "static" 유형인지
2. 🎜>3. Number 메소드의 매개변수 개수
4. 클래스 백콜의 메소드
// 执行detail方法 $method = new ReflectionMethod('Person', 'test'); if ($method->isPublic() && !$method->isStatic()) { echo 'Action is right'; } echo $method->getNumberOfParameters(); // 参数个数 echo $method->getParameters(); // 参数对象数组