正如您在下面的代码中所看到的,我正在使用->row()->$db_field;
。我不知何故需要操纵这个,所以我可以返回$db_field
和$db_field1
。
如果能够返回两行,我需要做什么?
代码:
if ($query_country->num_rows() > 0)
{
return $query_country->row()->$db_field;
}
答案 0 :(得分:1)
使用
return $query_country->result(); //return query result as object
或
return $query_country->result_array();//return query result as array