欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

php 获取对象的类名得到类名 get_class

  1. class foo {      
  2.     function name()  
  3.     {  
  4.         echo "My name is " , get_class($this) , "\n";  
  5.   
  6.     }  
  7. }  
  8.   
  9. // create an object  
  10.   
  11. $bar = new foo();  
  12.   
  13. // external call  
  14.   
  15. echo "Its name is " , get_class($bar) , "\n";  
  16.   
  17. // internal call  
  18.   
  19. $bar->name();  
  20.  
来自 http://blog.csdn.net/mlnotes/article/details/9675955
普通分类: