| 12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace App\Controller;
- class IndexController extends AbstractController
- {
- public function index()
- {
- $page = "<title>主页</title><meta charset='utf-8' style='font-size: 18px; line-height: 240px; width: 100%; text-align: center;'><div id='home'>欢迎访问,HCBET注单平台!</div>";
- echo $page;
- exit;
- }
- }
|