codeigniter, result() vs. result_array()

后端 未结 7 1505
时光取名叫无心
时光取名叫无心 2020-11-28 14:04

I use both result() and result_array().

Usually i like to get my result as array thats why i use result_array() mostly..

But i want

7条回答
  •  清酒与你
    2020-11-28 14:46

    result() is recursive in that it returns an std class object where as result_array() just returns a pure array, so result_array() would be choice regarding performance. There is very little difference in speed though.

提交回复
热议问题