1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-20 19:07:03 +08:00
2020-03-16 15:33:36 +08:00

25 lines
331 B
PHP

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