1
索引我有這樣一個表的一組行:檢索數據庫中的數據,通過主鍵笨
id | username | email
---+----------+----------------
1 | John | [email protected]
17 | Mary | [email protected]
而且我想要得到這樣的結果:
array(
1 => array(
username => 'John',
email => '[email protected]'
),
17 => array(
username => 'Mary',
email => '[email protected]'
)
);
是有可能在CodeIgniter中使用內置函數嗎?