php mysql procedure实现获取多个结果集的方法【基于thinkPHP】

前端之家收集整理的这篇文章主要介绍了php mysql procedure实现获取多个结果集的方法【基于thinkPHP】前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了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

猜你在找的ThinkPHP相关文章