App.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\facade;
  12. use think\Facade;
  13. /**
  14. * @see \think\App
  15. * @mixin \think\App
  16. * @method \think\App bind(string $bind) static 绑定模块或者控制器
  17. * @method void initialize() static 初始化应用
  18. * @method void init(string $module='') static 初始化模块
  19. * @method \think\Response run() static 执行应用
  20. * @method \think\App dispatch(\think\route\Dispatch $dispatch) static 设置当前请求的调度信息
  21. * @method void log(mixed $log, string $type = 'info') static 记录调试信息
  22. * @method mixed config(string $name='') static 获取配置参数
  23. * @method \think\route\Dispatch routeCheck() static URL路由检测(根据PATH_INFO)
  24. * @method \think\App routeMust(bool $must = false) static 设置应用的路由检测机制
  25. * @method \think\Model model(string $name = '', string $layer = 'model', bool $appendSuffix = false, string $common = 'common') static 实例化模型
  26. * @method object controller(string $name, string $layer = 'controller', bool $appendSuffix = false, string $empty = '') static 实例化控制器
  27. * @method \think\Validate validate(string $name = '', string $layer = 'validate', bool $appendSuffix = false, string $common = 'common') static 实例化验证器类
  28. * @method \think\db\Query db(mixed $config = [], mixed $name = false) static 数据库初始化
  29. * @method mixed action(string $url, $vars = [], $layer = 'controller', $appendSuffix = false) static 调用模块的操作方法
  30. * @method string parseClass(string $module, string $layer, string $name, bool $appendSuffix = false) static 解析应用类的类名
  31. * @method string version() static 获取框架版本
  32. * @method bool isDebug() static 是否为调试模式
  33. * @method string getModulePath() static 获取当前模块路径
  34. * @method void setModulePath(string $path) static 设置当前模块路径
  35. * @method string getRootPath() static 获取应用根目录
  36. * @method string getAppPath() static 获取应用类库目录
  37. * @method string getRuntimePath() static 获取应用运行时目录
  38. * @method string getThinkPath() static 获取核心框架目录
  39. * @method string getRoutePath() static 获取路由目录
  40. * @method string getConfigPath() static 获取应用配置目录
  41. * @method string getConfigExt() static 获取配置后缀
  42. * @method string setNamespace(string $namespace) static 设置应用类库命名空间
  43. * @method string getNamespace() static 获取应用类库命名空间
  44. * @method string getSuffix() static 是否启用类库后缀
  45. * @method float getBeginTime() static 获取应用开启时间
  46. * @method integer getBeginMem() static 获取应用初始内存占用
  47. * @method \think\Container container() static 获取容器实例
  48. */
  49. class App extends Facade
  50. {
  51. /**
  52. * 获取当前Facade对应类名(或者已经绑定的容器对象标识)
  53. * @access protected
  54. * @return string
  55. */
  56. protected static function getFacadeClass()
  57. {
  58. return 'app';
  59. }
  60. }