溫馨提示×

溫馨提示×

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

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

如何在PHP中利用reflection測試反射機制

發(fā)布時間:2021-01-13 15:44:30 來源:億速云 閱讀:158 作者:Leah 欄目:開發(fā)技術

這期內(nèi)容當中小編將會給大家?guī)碛嘘P如何在PHP中利用reflection測試反射機制,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

ReflectTest.php:

<?php
 
class ReflectTest {
 
    /**
     * 用戶ID
     */
    private $userId;
 
    /**
     * 用戶名
     */
    private $userName;
 
    /**
     * 用戶密碼
     */
    private $password;
 
    /**
     * 用戶郵箱
     */
    private $email;
 
    /**
     * 用戶QQ號碼
     */
    private $qq;
 
    /**
     * 登陸次數(shù)
     */
    private $loginTimes;
 
    public function ReflectTest(){
 
    }
 
    public function __construct($userId,$userName,$password){
        $this->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 "<h2>ReflectTest init.</h2><br/>UserId:".$ref->getUserId()."<br/>UserName:".$ref->getUserName()."<br/>Password:".$ref->getPassword();
  $class = new ReflectionClass('ReflectTest');//反射加載ReflectTest類
  $instance = $class->newInstanceArgs(array('123','root','123456'));//ReflectTest初始化
 
  echo "<h2>Field:</h2><br/>";
  $field = $class->getProperties();
  foreach($field as $f) {
    echo $f->getName()."<br/>";//反射輸出所有的成員變量
  }
 
  echo "<h2>get Fields DocComment:</h2><br/>";
  foreach($field as $f) {
    $docComment = $f->getDocComment();//反射輸出所有成員變量的文檔注釋
    echo $docComment."<br/>";
  }
 
  $method = $class->getMethods();//獲取ReflectTest所有方法
  echo "<h2>get Methods DocComment:</h2><br/>";
  foreach($method as $m) {
    $docComment = $m->getDocComment();//獲取所有方法的文檔注釋
    echo $docComment."<br/>";
 
  }
 
  echo "<h2>get Methods:</h2><br/>";
  foreach($method as $m) {
    $k = "get";//只調ReflectTest中的所有的get方法
    echo $m->getName()."=".($k === "" || strpos ( $m->getName (), $k ) === 0?$m->invoke($instance):"")."<br/>";
    if("setQq"==$m->getName()){
      $m->invoke($instance,'441637262');//調用setQq方法為ReflectTest當中的成員變量qq設值
    }
  }
 
  echo "<h2>Invoke (set/get)Qq result:</h2><br/>";
  $qq=$class->getmethod('getQq');//獲取getQq方法
  echo "getQQ:".$qq->invoke($instance)."<br/>";//獲取成員變量qq的值
  echo "jb51.net";
?>

請求http://localhost/php/test/Test.php輸出結果:

ReflectTest init.
 
UserId:1
UserName:admin
Password:admin888
Field:
 
userId
userName
password
email
qq
loginTimes
get Fields DocComment:
 
/** * 用戶ID */
/** * 用戶名 */
/** * 用戶密碼 */
/** * 用戶郵箱 */
/** * 用戶QQ號碼 */
/** * 登陸次數(shù) */
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=123
getUserName=root
getPassword=123456
getEmail=
getQq=
getLoginTimes=
setUserId=
setUserName=
setPassword=
setEmail=
setQq=
setLoginTimes=
Invoke (set/get)Qq result:
 
getQQ:441637262
jb51.net

上述就是小編為大家分享的如何在PHP中利用reflection測試反射機制了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI