PHP通過反射來得到類以及一些基本的應用

來源:互聯網
上載者:User
這篇文章主要介紹了關於PHP通過反射來得到類以及一些基本的應用,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

這幾天在看laravel架構的核心代碼。發現大量的使用了反射機制。下面就來簡單看看一些反射的應用

class A{    private $_foo = 'this is a';    public function index()    {        return $this->_foo;    }    private function _come($param)    {        return 'this is come'.$param;    }}$refClass = new ReflectionClass('A');//獲得反射

下面我們來通過這個反射來得到A的私人屬性

$privateParams = $refClass->getDefaultProperties();print_r($privateParams);//得到結果 Array ( [_foo] => this is a )echo $privateParams['_foo'];//得到 this is a

這樣我們就可以很輕鬆的獲得A的私人屬性了。那麼執行私人方法應該怎麼操作呢。接下來我們先看執行共有方法,執行公有方法比較簡單。

/****************獲得類的執行個體*******************/$class = $refClass->newInstance();echo $class->index();

這樣就可以調用公有的方法了。下面看執行私人方法

/****************擷取A的方法*******************/$refHasClass = $refClass->getMethods();print_r($refHasClass);/*** * Array ( [0] => ReflectionMethod Object ( [name] => index [class] => A ) * [1] => ReflectionMethod Object ( [name] => _come [class] => A ) ) */$come = $refClass->getMethod('_come');$come->setAccessible(true);echo $come->invoke($class,'this is param');// this is athis is comethis is param

先通過getMethod()就可以擷取到come方法,然後設定come方法的可訪問性。最後通過invoke執行該方法

反射還有很多可用的方法,這裡就不一一說了。有興趣的可以看看官方文檔

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.