TP3 VS TP5区别

1.入口文件
TP3:  http://localhost/index.php/Home/Index/index
TP5:  http://localhost/public/index.php/index/Index/index
解决入口文件问题
TP5:  http://localhost/index.php/index/Index/index

2.控制器 命名
TP3: IndexController.class.php
TP5: Index.php

3.config.php   app_debug  true

4.渲染模板 
TP3: $this->display()
TP5: 
use think\Controller;
Index extends Controller
return $this->fetch();

5.操作数据
TP3: M  D   
TP5: Db

6.模板传值 
TP3: 
TP5:$this->assign()

7.模板输出循环
TP3:  
TP5: {volist name="list" id="vo"}   {/volist}

8.大字母
TP3: U I D M S A C
TP5: url()  input()  Db()  config() 

9:支持php版本
TP3: index.php入口文件   php 5.3+
TP5: php 5.4+
 

你可能感兴趣的:(PHP)