instance() instance(mixed ...$args) : object 带参数实例化当前Facade类 Parameters mixed $args variadic Returns object —
make() make(string $class, array|true $args = [], bool $newInstance = false) : object 调用类的实例 Parameters string $class 类名或者标识 array|true $args 变量 bool $newInstance 是否每次创建新的实例 Returns object —
__callStatic() __callStatic(mixed $method, mixed $params) : mixed Parameters mixed $method mixed $params Returns mixed —
register() register(\think\Service|string $service, bool $force = false) : \think\Service|null 注册服务 Parameters \think\Service|string $service bool $force = false 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(bool $debug = true) : \think\App 开启应用调试模式 Parameters bool $debug = true 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 = [], bool $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 bool $newInstance 是否每次创建新的实例 Returns object —