Home  >  Article  >  Backend Development  >  How to use php to reflect API to obtain class information

How to use php to reflect API to obtain class information

jacklove
jackloveOriginal
2018-06-08 17:23:231550browse

PHP has a complete reflection API that can reverse engineer classes, interfaces, functions, methods and extensions. Reflection API and provides methods to extract documentation comments in functions, classes and methods. This article will introduce the method of using PHP reflection API to obtain class information and provide complete demonstration code.

PHP reflection API document address: http://php.net/manual/zh/class.reflectionclass.php

UseReflectionClassGet the attributes, interfaces, methods and other information of the class

1. Get the basic information of the class

$ref = new ReflectionClass($classname);echo $ref->getName();echo $ref->getFileName();

2. Get the class attribute information

$ref = new ReflectionClass($classname);$properties = $ref->getProperties();foreach($properties as $property){    echo $property->getName();
}

3.Get Class method information

$ref = new ReflectionClass($classname);$methods = $ref->getMethods();foreach($methods as $method){    echo $method->getName();
}

4. Get class interface information

$ref = new ReflectionClass($classname);$interfaces = $ref->getInterfaces();foreach($interfaces as $interface){    echo $interface->getName();
}

Demo code

Create IUser interface, User class, Vip class for reading

User.class.php

user[] = $data;
        $keys = array_keys($this->user);        return end($keys);
    }    /**
     * 读取用户数据
     * @param  Int    $id 用户id
     * @return Array
     */
    public function get($id){        if(isset($this->user[$id])){            return $this->user[$id];
        }else{            return array();
        }
    }

}/** VIP用户类 */class Vip extends User{    /**
     * 读取vip用户数据
     * @param  Int    $id 用户id
     * @return Array
     */
    public function getvip($id){
        $data = $this->get($id);        if($data){            return $this->format($data);
        }        return $data;
    }    /**
     * 修饰数据
     * @param  Array $data 用户数据
     * @return Array
     */
    private function format($data){
        $data['is_vip'] = 1;        return $data;
    }
}
?>

Create a Ref class and call the PHP reflection class to obtain class information

##Ref.class .php

BASE INFO'.PHP_EOL;        echo 'class name: '.self::$refclass->getName().PHP_EOL;        echo 'class path: '.dirname(self::$refclass->getFileName()).PHP_EOL;        echo 'class filename: '.basename(self::$refclass->getFileName()).PHP_EOL.PHP_EOL;
    }    // 读取类接口
    public static function getInterfaces(){
        echo 'INTERFACES INFO'.PHP_EOL;        $interfaces = self::$refclass->getInterfaces();        if($interfaces){            foreach($interfaces as $interface){                echo 'interface name: '.$interface->getName().PHP_EOL;
            }
        }
    }    // 读取类属性
    public static function getProperties(){
        echo 'PROPERTIES INFO'.PHP_EOL;        $properties = self::$refclass->getProperties();        if($properties){            foreach($properties as $property){                echo 'property name: '.$property->getName().PHP_EOL;                echo 'property modifier: '.self::getModifier($property).PHP_EOL;                echo 'property comments: '.self::formatComment($property->getDocComment()).PHP_EOL.PHP_EOL;
            }
        }
    }    // 读取类方法
    public static function getMethods(){
        echo 'METHODS INFO'.PHP_EOL;        $methods = self::$refclass->getMethods();        if($methods){            foreach($methods as $method){                echo 'method name: '.$method->getName().PHP_EOL;                echo 'method modifier: '.self::getModifier($method).PHP_EOL;                echo 'method params num: '.$method->getNumberOfParameters().PHP_EOL;                $params = $method->getParameters();                if($params){                    foreach($params as $param){                        echo 'param name:'.$param->getName().PHP_EOL;
                    }
                }                echo 'method comments: '.self::formatComment($method->getDocComment()).PHP_EOL.PHP_EOL;
            }
        }
    }    // 获取修饰符
    private static function getModifier($o){
        // public
        if($o->isPublic()){            return 'public';
        }        // protected
        if($o->isProtected()){            return 'protected';
        }        // private
        if($o->isPrivate()){            return 'private';
        }        return '';
    }    // 格式化注释内容
    private static function formatComment($comment){
        $doc = explode(PHP_EOL, $comment);        return isset($doc[1])? trim(str_replace('*','',$doc[1])) : '';
    }

}?>

demo:

';
Ref::setClass('Vip');
Ref::getBase();
Ref::getProperties();
Ref::getMethods();
Ref::getInterfaces();
echo '
';?>

Output:

BASE INFOclass name: Vipclass path: /home/fdipzone/refclass filename: User.class.php

PROPERTIES INFOproperty name: userproperty modifier: protectedproperty comments: 用户数据

METHODS INFOmethod name: getvipmethod modifier: publicmethod params num: 1param name:idmethod comments: 读取vip用户数据method name: formatmethod modifier: privatemethod params num: 1param name:datamethod comments: 修饰数据method name: addmethod modifier: publicmethod params num: 1param name:datamethod comments: 新增用户method name: getmethod modifier: publicmethod params num: 1param name:idmethod comments: 读取用户数据

INTERFACES INFOinterface name: IUser

This article explains how to use php to reflect API to obtain class information, more For related content, please pay attention to php Chinese website.

Related recommendations:

Detailed explanation of the reasons and optimization methods for excessive offset affecting performance when querying mysql

About using regular rules in PHP Methods to remove width and height styles

Detailed explanation of file content deduplication and sorting

The above is the detailed content of How to use php to reflect API to obtain class information. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn