我正在使用$this->db->get_where()
从 codeigniter 中的数据库获取数据。我开始使用它的回归print_r()
它看起来像数组stdClass object
。如何访问此数组中的值的任何人。
Array ( [0] =>
stdClass Object (
[id] => 1
[password321] => qwerty
[email123] => example@gmail.com
[username123] => xyz
)
)