溫馨提示×

溫馨提示×

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

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

PHP延遲靜態(tài)綁定使用方法實(shí)例解析

發(fā)布時(shí)間:2020-10-06 07:17:07 來源:腳本之家 閱讀:127 作者:tonySuen 欄目:開發(fā)技術(shù)

PHP的繼承模型中有一個(gè)存在已久的問題,那就是在父類中引用擴(kuò)展類的最終狀態(tài)比較困難。我們來看一下代碼清單5-11中的例子。

代碼清單5-11 意想不到的繼承

<?php
 class ParentBase {
  static $property = 'Parent Value';
  public static function render() {
   return self::$property;
  }
 }
 class Descendant extends ParentBase {
  static $property = 'Descendant Value';
 }
 echo Descendant::render();
 Parent Value

在這個(gè)例子中,render()方法中使用了self關(guān)鍵字,這是指ParentBase類而不是指Descendant類。在ParentBase::render()方法中沒法訪問$property的最終值。為了解決這個(gè)問題,需要在子類中重寫render()方法。

通過引入延遲靜態(tài)綁定功能,可以使用static作用域關(guān)鍵字訪問類的屬性或者方法的最終值,如代碼所示。

 <?php
 class ParentBase {
  static $property = 'Parent Value';
  public static function render() {
   return static::$property;
  }
} 
 class Descendant extends ParentBase {
  static $property = 'Descendant Value';
 }
 echo Descendant::render();
 Descendant Value

通過使用靜態(tài)作用域,可以強(qiáng)制PHP在最終的類中查找所有屬性的值。除了這個(gè)延遲綁定行為,PHP還添加了get_called_class()函數(shù),這允許檢查繼承的方法是從哪個(gè)派生類調(diào)用的。以下代碼顯示了使用get_called_class()函數(shù)獲得當(dāng)前的類調(diào)用場景的方法。

使用get_called_class()方法

 <?php
 class ParentBase {
  public static function render() {
   return get_called_class();
  }
 }
 class Decendant extends ParentBase {}
 echo Descendant::render(); 
 Descendant

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

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

AI