|
<?php
class Test_call extends MY_Controller {
public function __construct(){
parent::__construct();
}
public function t(){
echo 't';
}
// ---------------------------------魔术方法------------------------------------------------
public static function __callStatic($method,$arg){
echo '你想调用我不存在的方法',$method,'方法<br/>';
echo '还传了一个参数<br/>';
echo print_r($arg),'<br/>';
}
public function __call($method,$arg){
echo '你想调用我不存在的方法1111',$method,'方法<br/>';
echo '还传了一个参数<br/>';
echo print_r($arg),'<br/>';
}
}
?>
访问无存在的方法时还是404的错误输出,
404 Page Not Found The page you requested was not found.
|
|