TP3.23框架SELECT方法使用技巧

Leeeeee發表於2021-03-02

有時候我們想要查詢結果按照某個欄位為查詢結果集的鍵,可以在select方法後面加上一個資料array(’index’=>’id)就可以達到這種效果,不用再去遍歷jinxi

$result = $User->where('status=1')->select(array('index' => 'id'));
// 遍歷結果,將 id 的值設為陣列 key,如下所示
array(
    '1' => array(
        'id' => 1,
        'nickname' => '小明',
        'email' => 'xiaoming@163.com',
        'age' => 9
    ),
    '2' => array(
        'id' => 2,
        'nickname' => '張三',
        'email' => 'zhangsan@163.com',
        'age' => 26
    ),
    '3' => array(
        'id' => 3,
        'nickname' => '李四',
        'email' => 'lisi@163.com',
        'age' => 26
    )
);
本作品採用《CC 協議》,轉載必須註明作者和本文連結
Lee

相關文章