thinkphp-base-starter/app/controller/Index.php

19 lines
273 B
PHP
Raw Normal View History

<?php
namespace app\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
2024-07-17 10:34:46 +08:00
return 'index111111测试222222';
}
public function hello($name = 'ThinkPHP8')
{
return 'hello,' . $name;
}
}