本文实例讲述了PHP MysqL procedure实现获取多个结果集的方法。分享给大家供大家参考,具体如下:
multi_query($sql)) {
do {
$records = array();
if ($result = $db->use_result()) {
while ($row = $result->fetch_array(MysqLI_ASSOC)) {
$records[] = $row;
}
$result->close();
}
$results[] = $records;
} while ($db->next_result());
}
$db->close();
$this->assign("list1",$results[1]);
$this->assign("list2",$results[2]);
$this->assign("list3",$results[3]);
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/thinkphp/18586.html