ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
> 我们可以在默认Home实例中尝试自己创建一个控制器,控制的名称需要首字符大写,用`.class`作为标识,使用`.php`作为后缀,接下来我们创建一个User控制器,名称为`User.class.php`: ```php <?php namespace App\Home; class User { public function Login() { echo 'Hello,This is the Login method of the User controller!'; } } ``` 在浏览器中输入:`127.0.0.1/index.php/user/login` 即可输出`Hello,This is the Login method of the User controller!`