本文共 1213 字,大约阅读时间需要 4 分钟。
- <?php
-
- 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/>';
- }
-
- }
-
- $li=new human();
- $li->say(1,2,3);
-
- $li->t('a','b');
-
- human::cry('痛哭','鬼哭','号哭');
-
- ?>
天气预报小实例
-
- <?php
- class Action{
-
- public function tj(){
- echo 'tj天气预报<br/>';
- }
-
- public function __call($m,$p){
-
- echo $m,'天气预报<br/>';
- }
-
- }
-
- $c=new Action();
- $c->tj();
-
- $city=$_GET['method'];
-
-
- if(isset($city)){
-
- $c->$city();
-
- }
-
-
- ?>
转载于:https://www.cnblogs.com/xiaoleiel/p/8324203.html