溫馨提示×

溫馨提示×

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

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

php面向?qū)ο笾瓷涔δ艿氖纠治?/h1>
發(fā)布時(shí)間:2021-07-10 09:52:21 來源:億速云 閱讀:84 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)php面向?qū)ο笾瓷涔δ艿氖纠治?,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

具體如下:

個(gè)人對反射定義的理解:

首先得說說什么叫反射。對于一個(gè)新手來說,反射這個(gè)概念常常給人一種似懂非懂的 感覺,不知道該如何下手操作。

反射是指:指在PHP運(yùn)行狀態(tài)中,擴(kuò)展分析PHP程序,導(dǎo)出或提取出關(guān)于類、方法、屬性、參數(shù)等的詳細(xì)信息,同時(shí)也包括注釋。這種動態(tài)獲取的信息以及動態(tài)調(diào)用對象的方法 的功能稱為反射API。反射是操縱面向?qū)ο蠓缎椭性P偷腁PI,其功能十分強(qiáng)大,可幫助我們構(gòu)建復(fù)雜,可擴(kuò)展的應(yīng)用。(注意:php中這種反向操作,實(shí)在PHP5之后才完全具備

下面在此我用實(shí)例進(jìn)行說明:

class test{
     private   $A;
     public   $B;
     protected  $C;
     public function test(){
       return "this is a test function";
     }
}
//實(shí)例化一個(gè)反射類ReflectionClass
$obj=new ReflectionClass('test');
echo $obj."<br>";
//實(shí)例化test類,并訪問其test方法
$obj2=$obj->newInstance();
echo $obj2->test();

個(gè)人實(shí)例返回結(jié)果:

/** * xxx.php * ============================================== * Copy right 2012-2015 * ---------------------------------------------- * This is not a free software, without any authorization is not allowed to use and spread. * ============================================== * @Author:YeXianMing * @Email:LangWaiShiGe@hotmail.com * @Version:zend studio10.6.2 php5.4.38 apache2.2 */ Class [ class test ] { @@ D:\www\MyProjecttest\index5.php 13-21 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [3] { Property [ private $A ] Property [ public $B ] Property [ protected $C ] } - Methods [1] { Method [ public method test ] { @@ D:\www\MyProjecttest\index5.php 18 - 20 } } }
this is a test function

關(guān)于“php面向?qū)ο笾瓷涔δ艿氖纠治觥边@篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

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