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

php get_called_class()函数与get_class函数的区别

时间:2017-12-13 02:08:04      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:manual   s函数   调用   art   back   cal   article   var   rgba   

get_class (): 获取当前调用方法的类名; 
get_called_class():获取静态绑定后的类名;

有例为证:

 class Foo{
      public function test(){
         var_dump(get_class());
      }

      public function test2(){
        var_dump(get_called_class());
      }

      public static function test3(){
        var_dump(get_class());
      }

      public static function test4(){
        var_dump(get_called_class());
      }
   }

   class B extends Foo{

   }

   $B=new B();
   $B->test();
   $B->test2();
   Foo::test3();
   Foo::test4();
   B::test3();
   B::test4();

输出结果:

string ‘Foo‘ (length=3)
string ‘B‘ (length=1)
string ‘Foo‘ (length=3)
string ‘Foo‘ (length=3)
string ‘Foo‘ (length=3)
string ‘B‘ (length=1)

 

 

转:http://blog.csdn.net/tashanhongye/article/details/48159771

参:http://php.net/manual/zh/function.get-called-class.php

 

 

 

 

php get_called_class()函数与get_class函数的区别

标签:manual   s函数   调用   art   back   cal   article   var   rgba   

原文地址:http://www.cnblogs.com/fps2tao/p/8030168.html

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