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

溫馨提示×

溫馨提示×

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

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

PHP反射Reflection的使用方法

發布時間:2021-06-29 14:52:08 來源:億速云 閱讀:169 作者:chen 欄目:開發技術

本篇內容介紹了“PHP反射Reflection的使用方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

PHP Reflection是用于獲取類、擴展、方法、函數、對象、參數、屬性的詳細信息。
ReflectionClass類獲取類相關信息,如獲取屬性、方法、文檔注釋等。

<?php
 
class Person {
  /**
   * For the sake of demonstration, we"re setting this private
   */
  private $_allowDynamicAttributes = false;
 
  /** type=primary_autoincrement */
  protected $id = 0;
 
  /** type=varchar length=255 null */
  protected $name;
 
  /** type=text null */
  protected $biography;
 
  public function getId()
  {
    return $this->id;
  }
  public function setId($v)
  {
    $this->id = $v;
  }
  public function getName()
  {
    return $this->name;
  }
  public function setName($v)
  {
    $this->name = $v;
  }
  public function getBiography()
  {
    return $this->biography;
  }
  public function setBiography($v)
  {
    $this->biography = $v;
  }
}
 
//導出類
ReflectionClass::export('Person');
 
$r = new ReflectionClass('Person');
 
//獲取所有屬性
print_r($r->getProperties());
 
/**
 * 獲取指定屬性
 * ReflectionProperty::IS_STATIC
 * ReflectionProperty::IS_PUBLIC
 * ReflectionProperty::IS_PROTECTED
 * ReflectionProperty::IS_PRIVATE
 */
print_r($r->getProperties(ReflectionProperty::IS_PRIVATE));
 
//獲取注釋
print_r($r->getProperty('id')->getDocComment());
 
//獲取方法
print_r($r->getMethods());

ReflectionExtension 類用于獲取擴展相關信息

$re = new ReflectionExtension('Reflection');
print_r($re->getClasses()); //擴展的所有類
print_r($re->getClassNames()); //擴展所有類名
 
$dom = new ReflectionExtension('mysql');
print_r($dom->getConstants());//擴展常量
print_r($dom->getDependencies());//該擴展依賴
print_r($dom->getFunctions());//擴展方法
print_r($dom->getINIEntries());//擴展ini信息
print_r($dom->getName());//擴展名稱
print_r($dom->getVersion());//擴展版本
print_r($dom->info());//擴展信息
print_r($dom->isPersistent());//是否是持久擴展
print_r($dom->isTemporary()); //是否是臨時擴展

 ReflectionFunction類 用戶獲取函數相關信息

$rf = new ReflectionFunction('array_merge');
 
foreach($rf->getParameters() as $item) {
  echo $item . PHP_EOL;
}

ReflectionMethod類用戶獲取方法相關信息

class Person {
 
  public $name;
 
  /**
   * get name of person
   */
  public function getName()
  {
    return $this->name;
  }
  public function setName($v)
  {
    $this->name = $v;
  }
}
 
$rm = new ReflectionMethod('Person', 'getName');
 
print_r($rm->isPublic());
print_r($rm->getDocComment());

ReflectionObject 類 用于獲取對象相關信息

class Person {
 
  public $name;
 
  public function __construct($name)
  {
    $this->name = $name;
  }
  
  public function getName()
  {
    return $this->name;
  }
  
  public function setName($v)
  {
    $this->name = $v;
  }
}
 
$a = new Person('a');
 
$ro = new ReflectionObject($a);
 
print_r($ro->getMethods());

ReflectionParameter 獲取函數或方法參數的相關信息。

class Person {
 
  public $name;
 
  public function __construct($name)
  {
    $this->name = $name;
  }
 
  public function getName()
  {
    return $this->name;
  }
 
  public function setName($v)
  {
    $this->name = $v;
  }
}
 
$p = new ReflectionParameter(array('Person', 'setName'), 0);
 
print_r($p->getPosition()); //0
print_r($p->getName()); //v

ReflectionProperty 獲取類的屬性的相關信息。

class Person {
 
  /** 測試 */
  public $name;
 
  public function __construct($name)
  {
    $this->name = $name;
  }
 
  public function getName()
  {
    return $this->name;
  }
 
  public function setName($v)
  {
    $this->name = $v;
  }
}
 
$p = new ReflectionProperty('Person', 'name');
 
print_r($p->getDocComment());

“PHP反射Reflection的使用方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

鹿邑县| 平谷区| 丰都县| 宜阳县| 宕昌县| 北京市| 图片| 登封市| 滕州市| 宜州市| 普安县| 德昌县| 双城市| 鹤庆县| 清水河县| 吉隆县| 高清| 上虞市| 黄石市| 万山特区| 兰西县| 盘山县| 江西省| 衡阳县| 晋宁县| 社旗县| 诏安县| 宁乡县| 鹰潭市| 武邑县| 岐山县| 临湘市| 乌兰察布市| 永安市| 五寨县| 大荔县| 灵川县| 法库县| 上犹县| 沐川县| 额济纳旗|