ThinkPHP项目的应用入口文件是________
A: application/index.html
B: public/index.php
C: public/index.htm
D: public/index.html
A: application/index.html
B: public/index.php
C: public/index.htm
D: public/index.html
举一反三
- ThinkPHP采用()进行项目部署和访问,thinkphp5.0默认的应用入口文件位于() A: 多入口模式,application/index B: 单一入口模式,application/index/index C: 多入口模式,public/index D: 单一入口模式,public/index
- thinkphp5的入口文件index.php默认存放在哪个目录下? A: application B: index C: public D: view
- 下面类的索引定义或使用正确的是()。 A: class MyClass{ int x; int y; public int this[int index] { get{ if (index==0) return x; else return y; }}} B: class MyClass{ int x; int y; public int this[int index] { set{ if (index==0) x=value; else y=value; }}} C: class MyClass{ int x; int y; public int INDEX[int index] { get{ if (index==0) return x; else return y; } set{ if (index==0) x=value; else y=value; }}} D: class MyClass{ int x; int y; public int this[int index] { get{ if (index==0) return x; else return y; } set{ if (index==0) x=value; else y=value; }}}
- Consumer spending is often an of public confidence in the economy. A: income B: index C: independence D: indeed
- 一个控制操作show定义在下面的控制器文件中:application/index/controller/Index.php一个视图模板文件stu.html保存在下面的路径中:application/index/view/index如果要在该操作中渲染视图模板文件,哪个是正确的渲染语句。 A: return view(""); B: return view("show"); C: return view("stu"); D: return view("index");