26 Star 122 Fork 16

hunzhiwange/QueryPHP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rr.php 804 Bytes
一键复制 编辑 原始数据 按行查看 历史
小牛New 提交于 2024-05-17 15:10 . 优化目录
<?php
declare(strict_types=1);
use App\Infra\Exceptions\Runtime;
use App\Infra\Kernel\Kernel;
use App\Infra\Module\RoadRunner\RoadRunnerServer;
use Leevel\Di\Container;
use Leevel\Di\IContainer;
use Leevel\Kernel\App;
use Leevel\Kernel\Exceptions\IRuntime;
use Leevel\Kernel\IApp;
use Leevel\Kernel\IKernel;
// 加载 Composer
require __DIR__.'/vendor/autoload.php';
// 创建应用
// 注册应用基础服务
$container = Container::singletons();
$container->singleton(IContainer::class, $container);
$container->singleton('app', $app = new App($container, realpath(__DIR__)));
$container->alias('app', [IApp::class, App::class]);
$container->singleton(IKernel::class, Kernel::class);
$container->singleton(IRuntime::class, Runtime::class);
// 处理请求
(new RoadRunnerServer())->handle($app);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/dyhb/queryphp.git
[email protected]:dyhb/queryphp.git
dyhb
queryphp
QueryPHP
master

搜索帮助