溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

thinkphp中field怎么用

發(fā)布時(shí)間:2021-09-07 10:42:00 來(lái)源:億速云 閱讀:170 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹thinkphp中field怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

說(shuō)明

    field方法屬于模型的連貫操作方法之一,主要目的是標(biāo)識(shí)要返回或者操作的字段,可以用于查詢和寫(xiě)入操作

示例

指定字段
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();
使用數(shù)組參數(shù)
Db::table('think_user')->field(['id','title','content'])->select();
數(shù)組參數(shù)-別名
Db::table('think_user')->field(['id','nickname'=>'name'])->select();
函數(shù)+數(shù)組方式
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)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI