欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP优化教程之解决嵌套问题

程序员文章站 2022-03-16 07:55:02
...

在开发过程中,我们经常遇到一对多的场景,

例如:查询订单列表,并且展示订单详情商品、数量数据

思路0:传统做法

a. 查询订单列表

b. 遍历订单详情
$orderList = select from order where xx;
foreach($orderList as $orderItem) {
$orderItem->detailList = select
from order_detail where order_id = $orderItem->id;
}
分析:查询SQL次数为:N+1(N为订单个数),这样频繁请求数据库,影响效率

优化:减少频繁请求数据库

思路1:

a. 查询订单列表后,利用in查出所有订单详情

b. 通过(订单表id => 订单详情表order_id)遍历匹配数据
$orderList = select from order where xx;
$orderId = array_pluck($orderList, ‘id’); // Laravel内置数组辅助函数
$orderDetailList = select
from order_detail where order_id IN $orderId;
foreach($orderList as $orderItem) {
$detailListTemp = [];
foreach($orderDetailList as $orderDetailItem) {
if ($orderItem->id == $orderDetailItem->order_id) {
$detailListTemp[] = $orderDetailItem;
}
}
$orderItem->detailList = $detailListTemp;分析:降低查询后,但2层遍历,复杂度较高,数量过大容易内存溢出

优化:降低复杂度

思路2:

a. 查询订单列表后,利用in查出所有订单详情

b. 订单详情列表转换成以订单ID为索引,用isset来匹配订单的详情
$orderList = select from order where xx;
$orderId = array_pluck($orderList, ‘id’); // Laravel内置数组辅助函数
$orderDetailList = select
from order_detail where order_id IN $orderId;

  1. // 将订单详情转换成以订单ID为索引【方式1】
  2. $orderDetailList = arrayGroup($orderDetailList, 'order_id');
  3. // 或:将订单详情转换成以订单ID为索引【方式2:如果为一对一,可以用array_column】
  4. // $orderList = array_column($orderDetailList, null, 'order_id');
  5. foreach($orderList as $orderItem) {
  6. $orderItem->detailList = $orderDetailList[$orderItem->id] ?? [];
  7. }
  8. // 根据KEY数组分组
  9. function arrayGroup($list, $key) {
  10. $newList = [];
  11. foreach ($list as $item) {
  12. $newList[$item[$key]][] = $item;
  13. }
  14. return $newList;