这期内容当中小编将会给大家带来有关如何在PHP中利用reflection测试反射机制,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
ReflectTest.php:
<?php
class ReflectTest {
/**
* 用户ID
*/
private $userId;
/**
* 用户名
*/
private $userName;
/**
* 用户密码
*/
private $password;
/**
* 用户邮箱
*/
private $email;
/**
* 用户QQ号码
*/
private $qq;
/**
* 登陆次数
*/
private $loginTimes;
public function ReflectTest(){
}
public function __construct($userId,$userName,$password){
$this->userId = $userId;
$this->userName = $userName;
$this->password = $password;
}
/**
*
* @return the $userId
*/
public function getUserId() {
return $this->userId;
}
/**
*
* @return the $userName
*/
public function getUserName() {
return $this->userName;
}
/**
*
* @return the $password
*/
public function getPassword() {
return $this->password;
}
/**
*
* @return the $email
*/
public function getEmail() {
return $this->email;
}
/**
*
* @return the $qq
*/
public function getQq() {
return $this->qq;
}
/**
*
* @return the $loginTimes
*/
public function getLoginTimes() {
return $this->loginTimes;
}
/**
*
* @param field_type $userId
*/
public function setUserId($userId) {
$this->userId = $userId;
}
/**
*
* @param field_type $userName
*/
public function setUserName($userName) {
$this->userName = $userName;
}
/**
*
* @param field_type $password
*/
public function setPassword($password) {
$this->password = $password;
}
/**
*
* @param field_type $email
*/
public function setEmail($email) {
$this->email = $email;
}
/**
*
* @param field_type $qq
*/
public function setQq($qq) {
$this->qq = $qq;
}
/**
*
* @param field_type $loginTimes
*/
public function setLoginTimes($loginTimes) {
$this->loginTimes = $loginTimes;
}
}
?>
Test.php:
<?php
require_once 'ReflectTest.php';
$ref = new ReflectTest("1", "admin", "admin888");//实例化ReflectTest
echo "<h2>ReflectTest init.</h2><br/>UserId:".$ref->getUserId()."<br/>UserName:".$ref->getUserName()."<br/>Password:".$ref->getPassword();
$class = new ReflectionClass('ReflectTest');//反射加载ReflectTest类
$instance = $class->newInstanceArgs(array('123','root','123456'));//ReflectTest初始化
echo "<h2>Field:</h2><br/>";
$field = $class->getProperties();
foreach($field as $f) {
echo $f->getName()."<br/>";//反射输出所有的成员变量
}
echo "<h2>get Fields DocComment:</h2><br/>";
foreach($field as $f) {
$docComment = $f->getDocComment();//反射输出所有成员变量的文档注释
echo $docComment."<br/>";
}
$method = $class->getMethods();//获取ReflectTest所有方法
echo "<h2>get Methods DocComment:</h2><br/>";
foreach($method as $m) {
$docComment = $m->getDocComment();//获取所有方法的文档注释
echo $docComment."<br/>";
}
echo "<h2>get Methods:</h2><br/>";
foreach($method as $m) {
$k = "get";//只调ReflectTest中的所有的get方法
echo $m->getName()."=".($k === "" || strpos ( $m->getName (), $k ) === 0?$m->invoke($instance):"")."<br/>";
if("setQq"==$m->getName()){
$m->invoke($instance,'441637262');//调用setQq方法为ReflectTest当中的成员变量qq设值
}
}
echo "<h2>Invoke (set/get)Qq result:</h2><br/>";
$qq=$class->getmethod('getQq');//获取getQq方法
echo "getQQ:".$qq->invoke($instance)."<br/>";//获取成员变量qq的值
echo "jb51.net";
?>
请求http://localhost/php/test/Test.php输出结果:
ReflectTest init.
UserId:1
UserName:admin
Password:admin888
Field:
userId
userName
password
email
qq
loginTimes
get Fields DocComment:
/** * 用户ID */
/** * 用户名 */
/** * 用户密码 */
/** * 用户邮箱 */
/** * 用户QQ号码 */
/** * 登陆次数 */
get Methods DocComment:
/** * * @return the $userId */
/** * * @return the $userName */
/** * * @return the $password */
/** * * @return the $email */
/** * * @return the $qq */
/** * * @return the $loginTimes */
/** * * @param field_type $userId */
/** * * @param field_type $userName */
/** * * @param field_type $password */
/** * * @param field_type $email */
/** * * @param field_type $qq */
/** * * @param field_type $loginTimes */
get Methods:
ReflectTest=
__construct=
getUserId=123
getUserName=root
getPassword=123456
getEmail=
getQq=
getLoginTimes=
setUserId=
setUserName=
setPassword=
setEmail=
setQq=
setLoginTimes=
Invoke (set/get)Qq result:
getQQ:441637262
jb51.net
上述就是小编为大家分享的如何在PHP中利用reflection测试反射机制了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。