🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
> 我们可以在默认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!`