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

PHP学习笔记二十六【类的重载】

时间:2014-10-26 22:33:18      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   sp   文件   div   on   

<?php
  //重载:
  //函数名一样,通过函数的参数个数或者是参数类型不同,达到调用同一个函数名

    Class A{
     // public function test1(){
      // echo "test1()";
     // }
     // public function test1($name)
     // {
        // echo "hello world";
     // }
      //PHP不支持以上的重载方式
      
       public function test1(){
      echo "调用test1()";
     }
     public function test2($name)
     {
        echo "调用test2()";
        echo "<br/>".__CLASS__."<br/>";//输出在当前哪个类中
            echo "<br/>".__FUNCTION__."<br/>";//输出函数名称
     }
      
      
      
      //使用魔术方法定义方法的重载
      function __call($method,$p)
      {
        if($method=="test")
        {
            if(count($p)==1)
            {
              $this->test1($p);
            }else if(count($p)==2)
            {
              $this->test2($p);
            }
        }
      }
    }
     $a=new A();
     $a->test("张三");
     $a->test("张三",34);
     
     
     echo "<br/>".__LINE__; //魔术常量输出当前行
     echo "<br/>".__FILE__; //输出文件路径
     echo "<br/>".__DIR__; //目录
     
  ?>

 

PHP学习笔记二十六【类的重载】

标签:style   blog   color   io   使用   sp   文件   div   on   

原文地址:http://www.cnblogs.com/sumg/p/4052850.html

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