php中的反射是如何应用的?
程序员文章站
2022-05-23 08:25:50
...
本篇文章是对php中反射的应用进行了详细的分析介绍,需要的朋友参考下
一 反射的使用:
<?php class Person{ public $name; function construct($name){ $this->name=$name; } } interface Module{ function execute(); } class FtpModule implements Module{ function setHost($host){ print "FtpModule::setHost():$host\n"; } function setUser($user){ print "FtpModule::setUser():$user\n"; } function execute(){ //something } } class PersonModule implements Module{ function setPerson(Person $person){ print "PersonModule::setPerson:{$person->name}\n"; } function execute(){ //something } } class ModuleRunner{ private $configData =array( "PersonModule"=>array('person'=>'bob'), "FtpModule"=>array('host'=>'example.com','user'=>'anon') ); private $modules=array(); function init(){ $interface=new ReflectionClass('Module'); foreach($this->configData as $modulename=>$params){ $module_class=new ReflectionClass($modulename);//根据配置configData的名称,实例化ReflectionClass if(!$module_class->isSubclassOf($interface)){//检查反射得到了类是否是$interface的子类 throw new Exception("unknown module type:$modulename");//不是Module子类则 抛出异常 } $module=$module_class->newInstance();//实例化一个FtpModule或者PersonModule对象 foreach($module_class->getMethods() as $method){//获得类中的方法 $this->handleMethod($module,$method,$params); } array_push($this->modules,$module);//将实例化的module对象放入$modules数组中 } } function handleMethod(Module $module,ReflectionMethod $method,$params){ $name=$method->getName();//获得方法名称 $args=$method->getParameters();//获得方法中的参数 if(count($args)!=1||substr($name,0,3)!="set"){//检查方法必须是以set开头,且只有一个参数 return false; } $property= strtolower (substr($name,3));//讲方法名去掉set三个字母,作为参数 if(!isset($params[$property])){//如果$params数组不包含某个属性,就返回false return false; } $arg_class=@$args[0]->getClass;//检查setter方法的第一个参数(且唯一)的 数据类型 if(empty($arg_class)){ $method->invoke($module,$params[$property]); }else{ $method->invoke($module,$arg_class->newInstance($params[$property])); } } } $test=new ModuleRunner(); $test->init(); ?>
二 通过反射获得类中信息:
<PRE class=php name="code"> <?php class ReflectionUtil{ static function getClassSource(ReflectionClass $class){ $path=$class->getFileName(); $lines=@file($path); $from=$class->getStartLine(); $to=$class->getEndLine(); $len=$to-$from+1; return implode( array_slice ($lines,$from-1,$len)); } } $classname="Person"; $path="../practice/{$classname}.php"; if(! file_exists ($path)){ throw new Exception("No such file as {$path}"); } require_once ($path); if(!class_exists($classname)){ throw new Exception("No such class as {$classname}"); } print ReflectionUtil::getClassSource(new ReflectionClass('Person')); ?> </PRE><BR> <PRE></PRE> 结果是:class Person{ public $age; public $name; function getName(){return "zjx";} function getAge(){return 12;} function toString(){ $rs=$this->getName(); $rs.="(age".$this->getAge().")"; return $rs; } } <PRE></PRE> <PRE></PRE> <PRE></PRE> <PRE></PRE>
以上就是php中的反射是如何应用的?的详细内容,更多请关注其它相关文章!
上一篇: jQuery Mobile页面跳转后未加载外部JS原因分析及解决_jquery
下一篇: getComputedStyle与currentStyle获取样式(style/class)_javascript技巧
推荐阅读
-
解析argc argv在php中的应用
-
PHP的生命周期 opcode缓存 什么是php的词典扫描?该如何处理
-
php-请问如何在PHP服务器中处理图片,得到边缘处理的结果
-
什么是PEAR?什么是PECL?PHP中两个容易混淆的概念解释,pearpecl
-
如何让你的内存中的 NoSQL 数据存储适合企业级应用
-
浅析php中如何在有限的内存中读取大文件_php技巧
-
为什么无法使用php中mysqli的准备语句进行数据库中数据的查询(绑定参数或者绑定结果),项目急用!该如何处理
-
php中的fread和fgetc获取文件内容的单位是字节还是字符,为什么fgetc读取不到字符?
-
PHP 中的计算机程序该怎么写?如何封装?
-
php中的类、对象、方法是指什么