_initialize() 變成 initialize()
I('name') 變成 $this->request->param('name')
D('name') 改成 model('name')
M('name') 變成 db('name')
:U('') 變成 :url('')
模塊名控制器名方法名:
$this->request->module();
$this->request->controller();
$this->request->action();
TP5中的getField():拆分為value和column了
例子:
??? where("id = 1")->value("title"); 輸出:(string) title
??? where("id = 1")->column("title"); 輸出:(array)
??? where("id > 1")->value("GROUP_CONCAT(user_id)"); 輸出:拼接user_id值,例如:5,8,9,10
TP5 渲染模板后返回內容:
$content = $this->fetch ( '****' )->getContent ();
echo $content;
發表評論