久成视频在线观看免费-先锋影音资源影音中在线不卡-久久精品—区二区三区美女-久久国产免费一区二区三区

<track id="icesm"></track>

    1. 龍巖易富通網(wǎng)絡(luò)科技有限公司

      龍巖小程序開發(fā),龍巖分銷系統(tǒng)

      tp5.1 變化

      2021.02.04 | 2185閱讀 | 0條評(píng)論 | 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)

      ??? where("id > 1")->value("GROUP_CONCAT(user_id)");     輸出:拼接user_id值,例如:5,8,9,10


      TP5 渲染模板后返回內(nèi)容:

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

      echo $content;


      贊 (

      發(fā)表評(píng)論