微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

创建PHP类大纲

我正在寻找一个可以有效勾画一个类的函数或类:

class MyClass{

  /*
  * Perhaps include the function comments
  * in the function.
  */
  function mainFunction(){
    //Does Something
  } 

  function functionWithArgs($arg1,$arg2=false){
    //Does Something
    //The function I want will give e the arguments w/default values
  }

}

是否有一个函数或库可以让我对这个类甚至文件的信息进行某种访问.

恩.

get_file_outline( ‘fileWithAboveClass.PHP’);

要么

get_class_outline( ‘MyClass的’);

有没有人知道,或知道一种轻松写这个的方法

解决方法:

看看PHP Reflection API

//use the ReflectionClass to find out about MyClass
$classInfo = new ReflectionClass('MyClass'); 

//then you can find out pretty much anything you want to kNow...
$methods = $classInfo->getmethods(); 
var_dump($methods);

//you can even extract your comments, e.g.
$comment=$classInfo->getmethod('mainFunction')->getDocComment();

请注意,要使注释提取起作用,它们必须格式化为PHPDoc / Doxygen注释,并以开头/ **开头

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐