make() make(string $class, array|true $args = array(), boolean $newInstance = false) : object 调用类的实例 Parameters string $class 类名或者标识 array|true $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object
register() register(\think\Service|string $service, boolean $force = false) : \think\Service|null 注册服务 Parameters \think\Service|string $service boolean $force Returns \think\Service|null
bootService() bootService(\think\Service $service) : mixed 执行服务 Parameters \think\Service $service Returns mixed
getService() getService(string|\think\Service $service) : \think\Service|null 获取服务 Parameters string|\think\Service $service Returns \think\Service|null
debug() debug(boolean $debug = true) : \think\App 开启应用调试模式 Parameters boolean $debug Returns \think\App
setNamespace() setNamespace(string $namespace) : \think\App 设置应用命名空间 Parameters string $namespace Returns \think\App
parseClass() parseClass(string $layer, string $name) : string 解析应用类的类名 Parameters string $layer string $name Returns string
createFacade() createFacade(string $class = '', array $args = array(), boolean $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 boolean $newInstance 是否每次创建新的实例 Returns object