mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 03:17:05 +08:00
25 lines
360 B
PHP
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;
|
|
}
|
|
|
|
}
|