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

php 获取静态方法调用的类名

时间:2016-08-05 11:45:48      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

 1 方法一:
 2 class foo {
 3     static public function test() {
 4         var_dump(get_called_class());
 5     }
 6 }
 7 
 8 class bar extends foo {
 9 }
10 
11 foo::test();
12 bar::test();
13 
14 输出:
15     
16     string(3) "foo"
17     string(3) "bar"
18 
19 方法二:
20 class Bar {
21     public static function test() {
22         var_dump(static::class);
23     }
24 }
25 
26 class Foo extends Bar {
27 
28 }
29 
30 Foo::test();
31 Bar::test();
32 
33 Output:
34 
35  string(3) "Foo"
36  string(3) "Bar"

 

php 获取静态方法调用的类名

标签:

原文地址:http://www.cnblogs.com/shijiu520/p/5740360.html

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