AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[![](http://static.phpgrace.com/statics/images/downcode.png)](http://www.phpgrace.com/tools/download/13.html) # 类反射工具 ## **功能描述** 使用 reflex 工具类可以快速的对某个指定的类文件或对象进行反射,类文件结构一目了然! ## **部署说明** >将 reflex.php 文件直接部署到 phpGrace/tools/ 文件夹下 ## **使用说明** 使用 phpGrace\\tools\\reflex 类的静态方法 r,参数:类或对象。 ~~~ <?php class indexController extends grace{     public function index(){         $mailer  = new phpGrace\tools\mailer();         phpGrace\tools\reflex::r($mailer);     } } ~~~ ## **反射结果类似:** ~~~ 文件位置 : D:\web\localhost\phpGrace\tools\mailer.php 属性 :  Property [ default private $mailConfig ]  类内常量 :  方法 :  Method [ user, ctor public method __construct ] { @@ D:\web\localhost\phpGrace\tools\mailer.php 24 - 32 }  Method [ user public method send ] { @@ D:\web\localhost\phpGrace\tools\mailer.php 34 - 77 - Parameters [4] ...... ~~~