首页 >

PHP中的reflection反射机制测试例子,phpreflection

php教程|php手册PHP中的reflection反射机制测试例子,phpreflection
PHP,reflection,反射机制,反射机制
php教程-php手册
PHP中的reflection反射机制测试例子,phpreflection
餐饮收银软件源码,vscode开发版有什么用,ubuntu界面挂了,tomcat启动时区不对,爬虫怎么编写,php网站怎么攻击,河南seo优化郑州网络推广引流lzw
Java类反射应用得非常广泛几乎是所有框架的最核心部分,PHP程序员似乎从不关心反射。尝试着用java的思想去理解php的反射,跟java基本上基本一致。参考了php手册:http://www.php.net/manual/zh/book.reflection.php。
微盘交易源码开源,ubuntu目录home,tomcat8安装报错,pthon 爬虫实例,php网站文章发布模板,潜江工程机械seo推广哪里好lzw
ReflectTest.php:
随机抽奖源码,虚拟机装vscode,ubuntu分区不能,tomcat回参过滤,crawling爬虫实例,php拼音搜索汉字,新洲区seo网络推广,淘宝客 php网站源码,织梦模板秀网站安全性lzw
userId = $userId;        $this->userName = $userName;        $this->password = $password;    }     /**     *     * @return the $userId     */    public function getUserId() {        return $this->userId;    }     /**     *     * @return the $userName     */    public function getUserName() {        return $this->userName;    }     /**     *     * @return the $password     */    public function getPassword() {        return $this->password;    }     /**     *     * @return the $email     */    public function getEmail() {        return $this->email;    }     /**     *     * @return the $qq     */    public function getQq() {        return $this->qq;    }     /**     *     * @return the $loginTimes     */    public function getLoginTimes() {        return $this->loginTimes;    }     /**     *     * @param field_type $userId                 */    public function setUserId($userId) {        $this->userId = $userId;    }     /**     *     * @param field_type $userName               */    public function setUserName($userName) {        $this->userName = $userName;    }     /**     *     * @param field_type $password               */    public function setPassword($password) {        $this->password = $password;    }     /**     *     * @param field_type $email              */    public function setEmail($email) {        $this->email = $email;    }     /**     *     * @param field_type $qq                 */    public function setQq($qq) {        $this->qq = $qq;    }     /**     *     * @param field_type $loginTimes                 */    public function setLoginTimes($loginTimes) {        $this->loginTimes = $loginTimes;    }}?>

Test.php:

<?php  require_once 'ReflectTest.php';  $ref = new ReflectTest("1", "admin", "admin888");//实例化ReflectTest  echo "

ReflectTest init.


UserId:".$ref->getUserId()."
UserName:".$ref->getUserName()."
Password:".$ref->getPassword(); $class = new ReflectionClass('ReflectTest');//反射加载ReflectTest类 $instance = $class->newInstanceArgs(array('123','root','123456'));//ReflectTest初始化 echo "

Field:


"; $field = $class->getProperties(); foreach($field as $f) { echo $f->getName()."
";//反射输出所有的成员变量 } echo "

get Fields DocComment:


"; foreach($field as $f) { $docComment = $f->getDocComment();//反射输出所有成员变量的文档注释 echo $docComment."
"; } $method = $class->getMethods();//获取ReflectTest所有方法 echo "

get Methods DocComment:


"; foreach($method as $m) { $docComment = $m->getDocComment();//获取所有方法的文档注释 echo $docComment."
"; } echo "

get Methods:


"; foreach($method as $m) { $k = "get";//只调ReflectTest中的所有的get方法 echo $m->getName()."=".($k === "" || strpos ( $m->getName (), $k ) === 0?$m->invoke($instance):"")."
"; if("setQq"==$m->getName()){ $m->invoke($instance,'441637262');//调用setQq方法为ReflectTest当中的成员变量qq设值 } } echo "

Invoke (set/get)Qq result:


"; $qq=$class->getmethod('getQq');//获取getQq方法 echo "getQQ:".$qq->invoke($instance)."
";//获取成员变量qq的值 echo "jb51.net";?>

请求http://localhost/php/test/Test.php输出结果:

ReflectTest init. UserId:1UserName:adminPassword:admin888Field: userIduserNamepasswordemailqqloginTimesget Fields DocComment: /** * 用户ID *//** * 用户名 *//** * 用户密码 *//** * 用户邮箱 *//** * 用户QQ号码 *//** * 登陆次数 */get Methods DocComment: /** * * @return the $userId *//** * * @return the $userName *//** * * @return the $password *//** * * @return the $email *//** * * @return the $qq *//** * * @return the $loginTimes *//** * * @param field_type $userId *//** * * @param field_type $userName *//** * * @param field_type $password *//** * * @param field_type $email *//** * * @param field_type $qq *//** * * @param field_type $loginTimes */get Methods: ReflectTest=__construct=getUserId=123getUserName=rootgetPassword=123456getEmail=getQq=getLoginTimes=setUserId=setUserName=setPassword=setEmail=setQq=setLoginTimes=Invoke (set/get)Qq result: getQQ:441637262jb51.net


Java Reflection (JAVA反射)机制详解

又开始倒分了,有意思吗?
 

什是PHP的反射机制

也可以叫映射。说直白点,他不仅能克隆到对象,而且可以调用对象的变量甚

至方法,挺强大的。php API5关于与对象有解释,有机会可以看下,类似于

java中的。当然,这种特性,足以证明php与asp还是有很大区别的!
 


PHP中的reflection反射机制测试例子,phpreflection
  • 如何利用php 来反射API获取类信息
  • 如何利用php 来反射API获取类信息 | 如何利用php 来反射API获取类信息 ...

    PHP中的reflection反射机制测试例子,phpreflection
  • 实例介绍PHP的Reflection反射机制,phpreflection
  • 实例介绍PHP的Reflection反射机制,phpreflection | 实例介绍PHP的Reflection反射机制,phpreflection ...

    PHP中的reflection反射机制测试例子,phpreflection
  • PHP反射机制用法实例
  • PHP反射机制用法实例 | PHP反射机制用法实例 ...