About tp6 entry file
  启明星Б.Нарса н
 启明星Б.Нарса н 2020-05-24 06:32:19
0
0
1171

Just started learning tp6

When executing tp6.io/index/Index/hello(), the execution result is tp6.io/index/Index/index, the same is true for other controllers, such as

tp6.io/index/Index/user is also

Code:

<?phpnamespace app\controller;use app\BaseController;use think\facade\Db;use think \facade\Env;class Index extends BaseController{ public function index(){ return 'administrator'; } public function user(){ return 'users'; } public function hello($name = 'ThinkPHP6') { return 'hello, ' . $name; }}

  启明星Б.Нарса н
 启明星Б.Нарса н

reply all(0)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!