跟着辛星深入探讨一下PHP的反射机制
早在之前学习Java的时候,清楚的记得是学完了多线程之后学习的反射,现在在PHP中当然也有反射机制,如果童鞋你还不明白,那就需要搞明白奥,毕竟反射的功能还是蛮强大的,学习它还是很具有现实意义的。 反射从简单去理解就是我们拿到一个类,得到这个类的一些信息,比如它有哪些方法、有哪些参数等等,当然我们还可以动态的去调用它的方法等等一些功能,它的用途就是可以自动加载插件、自动生成文档等等,从而达到扩展PHP语言的作用。
几乎所有的反射类都实现了reflector接口,所有的实现类都拥有一个方法,那就是export方法,我们可以用该方法来查看一些信息,这里我们以PHP的内置类作为第一个例子来看一下反射的基本用法,我们新建一个php文件,代码如下:
<?php $class = new ReflectionClass("mysqli");Reflection::export($class);
下面是它的本部分输出信息:
Class [ class mysqli ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ static public method poll ] { - Parameters [5] { Parameter #0 [ array or NULL &$read ] Parameter #1 [ array or NULL &$write ] Parameter #2 [ array or NULL &$error ] Parameter #3 [ $sec ] Parameter #4 [ $usec ] } } } - Properties [19] { Property [ public $affected_rows ] Property [ public $client_info ] Property [ public $client_version ] Property [ public $connect_errno ] Property [ public $connect_error ] Property [ public $errno ] Property [ public $error ] Property [ public $error_list ] Property [ public $field_count ] Property [ public $host_info ] Property [ public $info ] Property [ public $insert_id ]
这里我只是截取了部分内容,因为全部内容还是挺长的,我们可以看出它没有定义任何的静态属性,它有一个静态方法,方法名是poll,它需要五个参数,这五个参数的第一个可以是一个数组,也可以是一个NULL,它是变量$read代表的,第二个参数是一个数组或者一个NULL等等。。。。这里不一一列举了,读者可以阅读上面的代码段自行判断。
下面说一下我们的代码做了什么工作,我们首先定义了一个反射类ReflectionClass的实例$class,我们可以用var_dump来查看它的信息,这里我就不粘贴信息了,就看读者是否亲自操作了,然后我们调用Reflection的静态方法export来导出这个类的信息,然后我们就看到了上面的信息。
上面我们用反射机制来查看了该内置类的一些信息,那么对于我们自定义的类,我们能否查看呢,答案显然是可以的,比如如下代码:
<?phpclass Person{ public $name; /** *仅仅用来打印信息 */ public function test(){ echo "辛星加油"; }}foreach(get_declared_classes() as $class){ $myclass = new ReflectionClass($class); if($myclass->isUserDefined()){ Reflection::export($myclass); }}
Class [ class Person ] { @@ D:\MyApp\wamp\www\ap.php 2-10 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [1] { Property [ public $name ] } - Methods [1] { /** *仅仅用来打印信息 */ Method [ public method test ] { @@ D:\MyApp\wamp\www\ap.php 7 - 9 } } }
可能有些童鞋会说,我们通过var_dump也可以获取类的一些信息啊,没错,还是同一个类,我们看看用var_dump会输出什么,代码如下:
<?phpclass Person{ public $name; /** *仅仅用来打印信息 */ public function test(){ echo "辛星加油"; }}$person = new Person();$person->name = "xinxing";var_dump($person);
它的输出如下:
<strong>object</strong>(Person)[1] public 'name' => string 'xinxing' (length=7)
当然,可能大家也都知道var_dump和反射相比,对于类的操作还是很弱的,它只能够查看类的实例的信息,而且只能看类的属性,对于类里面的注释和方法都无能为力,没办法,这不是对象应该有的。
不要走开,我的博客会继续写一篇关于反射的应用的,这是这个篇幅有点长了,我想另开一篇博客 而已,期待您的关注。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
