龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

tp5.1 变化

2021.02.04 | 1450阅读 | 0条评论 | php

_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)


TP5 渲染模板后返回内容:

$content =  $this->fetch ( '****' )->getContent ();

echo $content;


赞 (

发表评论