baji/app/index/controller/Index.php
2025-03-03 14:47:45 +08:00

14 lines
184 B
PHP
Executable File

<?php
declare (strict_types = 1);
namespace app\index\controller;
class Index
{
public function index()
{
return '您好!这是一个[index]示例应用';
}
}