您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > PHP >

PHP反射API

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 22:47 点击:

反射是什么?
它是指在PHP运行状态中,扩展分析PHP程序,导出或提取出关于类、方法、属性、参数等的详细信息,包括注释。这种动态获取的信息以及动态调用对象的方法的功能称为反射API。
Php代码 
反射API概览: 
 
class Reflection { } 
interface Reflector { } 
class ReflectionException extends Exception { } 
class ReflectionFunction implements Reflector { } 
class ReflectionParameter implements Reflector { } 
class ReflectionMethod extends ReflectionFunction { } 
class ReflectionClass implements Reflector { } 
class ReflectionObject extends ReflectionClass { } 
class ReflectionProperty implements Reflector { } 
class ReflectionExtension implements Reflector { } 
 
详细说明:(例子详见php手册) 
 
①Reflection类 
 
class Reflection 

public static mixed export(Reflector r [,bool return]) 
//导出一个类或方法的详细信息 
public static array getModifierNames(int modifiers) 
//取得修饰符的名字 

 
②ReflectionException类 
 
该类继承标准类,没特殊方法和属性。 
 
③ReflectionFunction类 
 
class ReflectionFunction implements Reflector 

final private __clone() 
public object __construct(string name) 
public string __toString() 
public static string export() 
//导出该函数的详细信息 
public string getName() 
//取得函数名 
public bool isInternal() 
//测试是否为系统内部函数 
public bool isUserDefined() 
//测试是否为用户自定义函数 
public string getFileName() 
//取得文件名,包括路径名 
public int getStartLine() 
//取得定义函数的起始行 
public int getEndLine() 
//取得定义函数的结束行 
public string getDocComment() 
//取得函数的注释 
public array getStaticVariables() 
//取得静态变量 
public mixed invoke(mixed* args) 
//调用该函数,通过参数列表传参数 
public mixed invokeArgs(array args) 
//调用该函数,通过数组传参数 
public bool returnsReference() 
//测试该函数是否返回引用 
public ReflectionParameter[] getParameters() 
//取得该方法所需的参数,返回值为对象数组 
public int getNumberOfParameters() 
//取得该方法所需的参数个数 
public int getNumberOfRequiredParameters() 
//取得该方法所需的参数个数 

 
④ReflectionParameter类: 
 
class ReflectionParameter implements Reflector 

final private __clone() 
public object __construct(string name) 
public string __toString() 
public static string export() 
//导出该参数的详细信息 
public string getName() 
//取得参数名 
public bool isPassedByReference() 
//测试该参数是否通过引用传递参数 
public ReflectionClass getClass() 
//若该参数为对象,返回该对象的类名 
public bool isArray() 
//测试该参数是否为数组类型 
public bool allowsNull() 
//测试该参数是否允许为空 
public bool isOptional() 
//测试该参数是否为可选的,当有默认参数时可选 
public bool isDefaultValueAvailable() 
//测试该参数是否为默认参数 
public mixed getDefaultValue() 
//取得该参数的默认值 

 
⑤ReflectionClass类: 
 
class ReflectionClass implements Reflector 

final private __clone() 
public object __construct(string name) 

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • PHP测试
    • 十天学会php之第六天
    • 几种显示数据的方法的比较
    • 使用xmlhttp为网站增加域名查询功能
    • PHP+MYSQL+Javascript数据库查询结果的动态显示
    • 查找数组中指定键名的值
    • 用redis实现跨服务器session
    • 用新浪微博接口发送图片微博失败的原因
    • smarty局部缓存技术[源码分析]
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1