码迷,mamicode.com
首页 > Web开发 > 详细

PHP魔术方法之__call与__callStatic方法

时间:2015-07-22 18:34:45      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

//魔术方法__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魔术方法之__call与__callStatic方法

标签:

原文地址:http://www.cnblogs.com/gide/p/4668022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!