摘要:这篇文章主要介绍了php反射机制用法,是php程序设计中比较重要的概念,需要的朋友可以参考下
一、反射是什么
反射是操纵面向对象范型中元模型的api(php5)
通过reflectionclass,我们可以得到person类的以下信息:
1)常量 contants
2)属性 property names
3)方法 method names静态
4)属性 static properties
5)命名空间 namespace
6)person类是否为final或者abstract
<? php
classperson {
public $id;
public $username;
private $pwd;
private $sex;
public function run() {
echo '<br/>running';
}
}
$class = new reflectionclass('person'); //建立反射类
$instance=$class->newinstance(); //实例化
print_r($instance); //person object ( [id] => [username] => [pwd:person:private] => [sex:person:private] => )$properties = $class->getproperties();foreach($properties as $property) {
echo <br/> . $property->getname();
}
//默认情况下,reflectionclass会获取到所有的属性,private 和 protected的也可以。如果只想获取到private属性,就要额外传个参数:
//$private_properties = $class->getproperties(reflectionproperty::is_private);
//可用参数列表:
// reflectionproperty::is_static
// reflectionproperty::is_public
// reflectionproperty::is_protected
// reflectionproperty::is_private
// 如果要同时获取public 和private 属性,就这样写:reflectionproperty::is_public | reflectionproperty::is_protected。
// 通过$property->getname()可以得到属性名。$class->getmethods();
//获取方法(methods):通过getmethods() 来获取到类的所有methods。$instance->run();
//执行person 里的方法getbiography
//或者:$ec=$class->getmethod('run');
//获取person 类中的getname方法$ec->invoke($instance);
以上就是简述php反射机制实例详解的详细内容。