假设您在MySQL中有一个表
for q in questSoup.find_all('quest'):
gc.collect()
ql = find_q_line(q)
floors = set()
for f in set(q.find_all('location_id')):
if f.string not in skip_loc:
floor_soup = FloorSoup(f.string)
join_dict(string_by_ql, ql, floor_soup.find_floor_npcs())
join_dict(string_by_ql, ql, floor_soup.find_floor_hints())
del floor_soup
else:
print("Skipping location " + f.string)
我需要在+----+---------+--------------+
| No | Name | Type |
+----+---------+--------------+
| 1 | nav_id | int(11) |
| 2 | title | varchar(15) |
+----+---------+--------------+
之后得到11
我正在使用CodeIgniter 3。
答案 0 :(得分:1)
使用mysqli_fetch_field($result)
,这会完全返回您想要的内容。
将查询结果集传递给此函数。这是在php,在codeigniter使用
$this->db->field_data('table_name')
。希望它有所帮助。