<?php

namespace Home\Controller;

use Common\Controller\BaseController;

class AuthController  extends BaseController{

    /**
* @cc index主页面
*/
public function index(){
$modules = array('Home'); //模块名称
$i = 0;
foreach ($modules as $module) {
$all_controller = $this->getController($module);
foreach ($all_controller as $controller) {
$controller_name = $controller;
$all_action = $this->getAction($module, $controller_name); foreach ($all_action as $action) {
$data[$i] = array(
'name' =>$module.'/'. $controller . '/' . $action,
'status' => 1,
'desc'=>$this->get_cc_desc($module,$controller,$action)
);
$i++;
}
}
}
echo '<pre>';
print_r($data);
} /**
* @cc 获取所有控制器名称
*
* @param $module
*
* @return array|null
*/
protected function getController($module){
if(empty($module)) return null;
$module_path = APP_PATH . '/' . $module . '/Controller/'; //控制器路径
if(!is_dir($module_path)) return null;
$module_path .= '/*.class.php';
$ary_files = glob($module_path);
foreach ($ary_files as $file) {
if (is_dir($file)) {
continue;
}else {
$files[] = basename($file, C('DEFAULT_C_LAYER').'.class.php');
}
}
return $files;
} /**
* @cc 获取所有方法名称
*
* @param $module
* @param $controller
*
* @return array|null
*/
protected function getAction($module, $controller){
if(empty($controller)) return null;
$content = file_get_contents(APP_PATH . '/'.$module.'/Controller/'.$controller.'Controller.class.php'); preg_match_all("/.*?public.*?function(.*?)\(.*?\)/i", $content, $matches);
$functions = $matches[1]; //排除部分方法
$inherents_functions = array('_before_index','_after_index','_initialize','__construct','getActionName','isAjax','display','show','fetch','buildHtml','assign','__set','get','__get','__isset','__call','error','success','ajaxReturn','redirect','__destruct','_empty');
foreach ($functions as $func){
$func = trim($func);
if(!in_array($func, $inherents_functions)){
if (strlen($func)>0) $customer_functions[] = $func;
}
}
return $customer_functions;
} /**
* @cc 获取函数的注释
*
* @param $module Home
* @param $controller Auth
* @param $action index
*
* @return string 注释
*
*/
protected function get_cc_desc($module,$controller,$action){
$desc=$module.'\Controller\\'.$controller.'Controller'; $func = new \ReflectionMethod(new $desc(),$action);
$tmp = $func->getDocComment();
$flag = preg_match_all('/@cc(.*?)\n/',$tmp,$tmp);
$tmp = trim($tmp[1][0]);
$tmp = $tmp !='' ? $tmp:'无';
return $tmp;
} }

其中注释必须采用固定格式,

 /**
* @cc index主页面
*/

适用于ThinkPHP 3.2.2 ,适合用auth 认证时,直接提取所有的控制器及方法名,可以获取注释。非常方便。

参考:

1、http://www.thinkphp.cn/code/718.html

2、http://www.thinkphp.cn/topic/10357.html

最新文章

  1. Hiberbate
  2. Android xml资源文件中@、@android:type、@*、?、@+含义和区别
  3. Visibility属性控制元素的显示和隐藏
  4. 使用chrome查看网页上效果的实现方式
  5. NYOJ-58 最小步数 AC 分类: NYOJ 2014-01-22 22:01 217人阅读 评论(0) 收藏
  6. hadoop 关闭进程时报错no 进程 to stop
  7. vs2013+sql server2012
  8. HDOJ 1420 Prepared for New Acmer(DP)
  9. (转)iOS开发ARC内存管理技术要点
  10. CSS Sprites (css精灵)
  11. 【转】shell中如何判断一个变量是否为空
  12. 【特性】select语句中使用字符串链接获取字段值失败
  13. Junit-4.1.2 @Test 使用
  14. git个人学习总结
  15. Java的常用命令javac与java
  16. jquery each循环遍历完再执行的方法 因为each是异步的 所以要加计数器.
  17. FormData 对象的使用
  18. Java把数字格式化为货币字符串
  19. LG2945 【[USACO09MAR]沙堡Sand Castle】
  20. Servlet笔记2--模拟Servlet本质、第一个Servlet程序、将响应结果输出到浏览器中

热门文章

  1. POJ 1679 The Unique MST 【最小生成树/次小生成树模板】
  2. Sqli-labs less 8
  3. Linux中的命令判断
  4. ansible学习-playbook的YAML语法
  5. Python的zip函数(转)
  6. 【BZOJ 1478】 1478: Sgu282 Isomorphism (置换、burnside引理)
  7. [BZOJ5267]特工
  8. Problem D: 调用函数,输出Fibonacci数列的m项至n项
  9. MYSQL复习笔记12-视图
  10. mysql远程表/视图-应用