中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中反射的應用方法

發布時間:2021-07-23 13:40:46 來源:億速云 閱讀:139 作者:chen 欄目:開發技術

本篇內容介紹了“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中反射的應用方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

游戏| 昭平县| 土默特右旗| 革吉县| 华池县| 古蔺县| 赤壁市| 锡林郭勒盟| 红桥区| 阿克陶县| 天柱县| 五台县| 平塘县| 鄂托克前旗| 福海县| 克什克腾旗| 三穗县| 玛曲县| 德化县| 钟祥市| 城口县| 铜川市| 新竹市| 开化县| 武平县| 井冈山市| 始兴县| 海丰县| 长岛县| 瑞昌市| 赣榆县| 延庆县| 浪卡子县| 封丘县| 莱西市| 东乌珠穆沁旗| 岳西县| 华宁县| 舞钢市| 个旧市| 芮城县|