创建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注释,并以开头/ **开头

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...