无为清净楼资源网 Design By www.qnjia.com
一 反射的使用:
复制代码 代码如下:
<?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
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,反射
无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 炉石传说月底最强卡组有哪些 2024国服月底最强卡组推荐
- 炉石传说月初最强卡组有哪些 2024月初最强上分卡组推荐
- 狼人杀亮相原生鸿蒙之夜 假面科技强势登陆华为生态
- 12小时光线挑战!AI画质专家才是大平层首选
- 2024游戏IP报告:1~9月规模1960亿 68%用户愿为之付费
- 群星.2024-今夜一起为爱鼓掌电视剧原声带【相信音乐】【FLAC分轨】
- BIGFOUR.2013-大家利事【寰亚】【WAV+CUE】
- 李美凤.1992-情深透全情歌集【EMI百代】【WAV+CUE】
- 田震2024-《时光音乐会》[金峰][WAV+CUE]
- 群星《监听天碟3》[LECD]限量版[WAV+CUE]
- 心妤《声如夏花HQ》头版限量编号[WAV+CUE]
- 群星《摇滚五杰》[低速原抓WAV+CUE][1.1G]
- 群星 《2024好听新歌30》十倍音质 U盘音乐 [WAV+分轨]
- 群星《试音草原·女声篇》经典蒙古民歌[WAV+CUE][1G]
- 陈慧娴《永远是你的朋友》头版限量编号MQA-UHQCD2024[低速原抓WAV+CUE]