本文主要和大家介紹PHP魔術方法之__call與__callStatic方法,需要的朋友可以參考下,希望能幫助大家。
核心程式碼
//魔术方法__call /* $method 获得方法名 $arg 获得方法的参数集合 */ class Human { private function t(){ } public function __call($method,$arg){ echo '你想调用我不存在的方法',$method,'方法<br/>'; echo '还传了一个参数<br/>'; echo print_r($arg),'<br/>'; } public static function __callStatic($method,$arg){ echo '你想调用我不存在的',$method,'静态方法<br/>'; echo '还传了一个参数<br/>'; echo print_r($arg),'<br/>'; } } $ha = new Human(); //example1 $ha->t(1,2,3); echo '<br>'; //example2 $ha->say('a','b','c'); echo '<br>'; //example3 $ha::run('d','e','f');
你想要呼叫我不存在的方法t方法
也傳了一個參數
Array ( [0] => 1 [1] => 2 [2] => 3 )
你想呼叫我不存在的方法say方法
也傳了一個參數
Array ( [0] => a [1] => b [2] => c )
你想呼叫我不存在的run靜態方法
也傳了一個參數
Array ( [0] => d [1] => e [2] => f )
相關推薦:
##php的魔術方法__get() ,__set(),__call(),__callStatic()以及static用法詳解
php中__call 與 __callStatic用法與差異詳解
以上是PHP__call與__callStatic使用方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!