這幾天在看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
執行該方法
反射還有很多可用的方法,這裡就不一一說了。有興趣的可以看看官方文件