這篇文章主要介紹thinkphp中field怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于做網(wǎng)站、成都做網(wǎng)站、郊區(qū)網(wǎng)絡(luò)推廣、微信小程序開發(fā)、郊區(qū)網(wǎng)絡(luò)營(yíng)銷、郊區(qū)企業(yè)策劃、郊區(qū)品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供郊區(qū)建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com
說(shuō)明
field方法屬于模型的連貫操作方法之一,主要目的是標(biāo)識(shí)要返回或者操作的字段,可以用于查詢和寫入操作
示例
Db::table('think_user')->field('id,title,content')->select();
段設(shè)置別名
Db::table('think_user')->field('id,nickname as name')->select();
使用函數(shù)
Db::table('think_user')->field('id,SUM(score)')->select();
Db::table('think_user')->field(['id','title','content'])->select();
Db::table('think_user')->field(['id','nickname'=>'name'])->select();
Db::table('think_user') ->field(['id','concat(name,"-",id)'=>'truename','LEFT(title,7)'=>'sub_title']) ->select();
Db::table('think_user')->select(); Db::table('think_user')->field('*')->select(); Db::table('think_user')->field(true)->select();
Db::table('think_user')->field('content',true)->select(); Db::table('think_user')->field('user_id,content',true)->select(); Db::table('think_user')->field(['user_id','content'],true)->select();
以上是“thinkphp中field怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!