thinkphp5的入口文件index.php默认存放在哪个目录下?
A. application
B. index
C. public
D. view
查看答案
ThinkPHP5遵循PSR-2命名规范和PSR-4自动加载规范,其中要求类名
A. 全部小写
B. 全部大写
C. 采用驼峰法命名(首字母小写)
D. 采用驼峰法命名(首字母大写)
如果更改了数据库的连接用户名和密码,则需要修改模块内的什么文件?
A. index.php
B. database.php
C. config.php
D. user.php
如果在config.php文件中将controller_suffix设置为true来启用控制器后缀,则控制器的每个类名都应该以()结尾?
A. Controller
B. Model
C. View
D. Class
如果在index模块下的controller文件夹下定义了StudentController类,类中定义了edit方法,代码如下:public function edit(){$htmls=$this->fetch();return $htmls;}此时调用该方法将关联()文件进行显示?
A. public\edit.php
B. public\edit.html
C. index\view\edit.php
D. index\view\edit.html