PHP中的reflection反射機制測試例子,phpreflection
Java類反射應用得非常廣泛幾乎是所有架構的最核心部分,PHP程式員似乎從不關心反射。嘗試著用java的思想去理解php的反射,跟java基本上基本一致。參考了php手冊:http://www.php.net/manual/zh/book.reflection.php。
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 "ReflectTest init.
UserId:".$ref->getUserId()."
UserName:".$ref->getUserName()."
Password:".$ref->getPassword(); $class = new ReflectionClass('ReflectTest');//反射載入ReflectTest類 $instance = $class->newInstanceArgs(array('123','root','123456'));//ReflectTest初始化 echo "Field:
"; $field = $class->getProperties(); foreach($field as $f) { echo $f->getName()."
";//反射輸出所有的成員變數 } echo "get Fields DocComment:
"; foreach($field as $f) { $docComment = $f->getDocComment();//反射輸出所有成員變數的文檔注釋 echo $docComment."
"; } $method = $class->getMethods();//擷取ReflectTest所有方法 echo "get Methods DocComment:
"; foreach($method as $m) { $docComment = $m->getDocComment();//擷取所有方法的文檔注釋 echo $docComment."
"; } echo "get Methods:
"; foreach($method as $m) { $k = "get";//只調ReflectTest中的所有的get方法 echo $m->getName()."=".($k === "" || strpos ( $m->getName (), $k ) === 0?$m->invoke($instance):"")."
"; if("setQq"==$m->getName()){ $m->invoke($instance,'441637262');//調用setQq方法為ReflectTest當中的成員變數qq設值 } } echo "Invoke (set/get)Qq result:
"; $qq=$class->getmethod('getQq');//擷取getQq方法 echo "getQQ:".$qq->invoke($instance)."
";//擷取成員變數qq的值 echo "jb51.net";?>
請求http://localhost/php/test/Test.php輸出結果:
ReflectTest init. UserId:1UserName:adminPassword:admin888Field: userIduserNamepasswordemailqqloginTimesget 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=123getUserName=rootgetPassword=123456getEmail=getQq=getLoginTimes=setUserId=setUserName=setPassword=setEmail=setQq=setLoginTimes=Invoke (set/get)Qq result: getQQ:441637262jb51.net
Java Reflection (JAVA反射)機制詳解
又開始倒分了,有意思嗎?
什是PHP的反射機制
也可以叫映射。說直白點,他不僅能複製到對象,而且可以調用對象的變數甚
至方法,挺強大的。php API5關於與對象有解釋,有機會可以看下,類似於
java中的。當然,這種特性,足以證明php與asp還是有很大區別的!
http://www.bkjia.com/PHPjc/858746.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/858746.htmlTechArticlePHP中的reflection反射機制測試例子,phpreflection Java類反射應用得非常廣泛幾乎是所有架構的最核心部分,PHP程式員似乎從不關心反射。嘗試著...