zoukankan      html  css  js  c++  java
  • get_class--返回对象的类名

    get_class--返回对象的类名

    string get_class ([ object $obj ] )

    返回对象实例 obj 所属类的名字。如果 obj 不是一个对象则返回 FALSE

    <?php 
    class Person{
        public $username;
        public $age;
        public $height;
        public $weight;
        static public $number = 0;
        
        public function __construct($username,$age,$height,$weight){
            $this->username = $username;
            $this->age = $age;
            $this->height = $height;
            $this->weight = $weight;
            self::$number++;
        }
        public function __set($name,$value){
            $this->$name = $value;
        }
        
        public function __get($name){
            return $this->$name;
        }
        /**
         * 1)static方法中不能直接使用非静态成员,因为非静态成员与实例相关,通过实例化间接使用
         * 2)static方法中不能用this(与实例相关)
         * 3)非static方法中可以使用static成员
         
    */
        static public function getUsernumber(){
            var_dump(get_called_class());
            return self::$number;
        }
        
        public function getUsername(){
            var_dump(get_called_class());
            return $this->username;
        }
        
        public function __toString(){
            return '';
        }
    }
    $p = new Person('wangfei',36,165,52);
    echo get_class($p);

    ?> 

  • 相关阅读:
    百度Hi之CSRF蠕虫攻击
    Portlet之讲解
    try-catch语句讲解
    unset之讲解
    MySQL bin-log 日志清理方式
    php数组array_push()和array_pop()以及array_shift()函数
    php中的func_num_args、func_get_arg与func_get_args函数
    PHP is_callable 方法
    如何实现php异步处理
    Mysql并发时经典常见的死锁原因及解决方法
  • 原文地址:https://www.cnblogs.com/zhouguowei/p/5180299.html
Copyright © 2011-2022 走看看