1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-21 03:17:05 +08:00
2019-12-13 00:10:10 +08:00

25 lines
360 B
PHP

<?php
namespace App\Http\Home\Controllers;
class IndexController extends Controller
{
/**
* @Get("/", name="home.index")
*/
public function indexAction()
{
echo phpinfo(); exit;
}
/**
* @Get("/phpinfo", name="home.phpinfo")
*/
public function phpinfoAction()
{
echo phpinfo(); exit;
}
}