- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发我们的订单系统,以显示每个部门需要完成的特定订单。我在多维数组中拥有所有必要的数据。但我想合并具有相似值的任何数组。
Array
(
[0] => Array
(
[id] => 16111
[order_id] => 1234
[item_id] => Product 1
[invoice_id] => 98765
[acc_id] => 1
[name] => John Smith
[phone] => 000000000
)
[1] => Array
(
[id] => 16112
[order_id] => 1234
[item_id] => Product 2
[invoice_id] => 98765
[acc_id] => 1
[name] => John Smith
[phone] => 000000000
)
[2] => Array
(
[id] => 16113
[order_id] => 1235
[item_id] => Product 3
[invoice_id] => 98721
[acc_id] => 11
[name] => Bob Jones
[phone] => 222222222
)
[3] => Array
(
[id] => 16114
[order_id] => 1236
[item_id] => Product 4
[invoice_id] => 98754
[acc_id] => 3
[name] => Fred Bill
[phone] => 111111111
)
[4] => Array
(
[id] => 16115
[order_id] => 1236
[item_id] => Product 1
[invoice_id] => 98754
[acc_id] => 3
[name] => Fred Bill
[phone] => 111111111
)
)
我们可以看到我们有 5 个产品要发送给客户。但约翰·史密斯和弗雷德·比尔都想要多件元素。我宁愿将其作为每个客户的数组,而不是将数据存储在每个项目的数组中。基于订单 ID。所以我希望数组最终看起来像这样。
Array
(
[0] => Array
(
[0] => Array
(
[id] => 16111
[order_id] => 1234
[item_id] => Product 1
[invoice_id] => 98765
[acc_id] => 1
[name] => John Smith
[phone] => 000000000
)
[1] => Array
(
[id] => 16112
[order_id] => 1234
[item_id] => Product 2
[invoice_id] => 98765
[acc_id] => 1
[name] => John Smith
[phone] => 000000000
)
)
[1] => Array
(
[id] => 16113
[order_id] => 1235
[item_id] => Product 3
[invoice_id] => 98721
[acc_id] => 11
[name] => Bob Jones
[phone] => 222222222
)
[2] => Array
(
[0] => Array
(
[id] => 16114
[order_id] => 1236
[item_id] => Product 4
[invoice_id] => 98754
[acc_id] => 3
[name] => Fred Bill
[phone] => 111111111
)
[1] => Array
(
[id] => 16115
[order_id] => 1236
[item_id] => Product 1
[invoice_id] => 98754
[acc_id] => 3
[name] => Fred Bill
[phone] => 111111111
)
)
)
产品 1 也是邮政和包装,因此我希望将数据回显到表中。但我不希望“邮政”和“包装”拥有自己的行,而是在该数组中其他产品的行中确定一个字段。因此,在表格中我们会看到例如:
如果客户有多种产品,则这需要起作用
最佳答案
你在寻找这样的东西吗?
foreach($array as $order)
{
$orders[$order['order_id']][] = $order;
}
它按 order_id 对所有订单进行分组
关于php - 合并多维数组匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17697318/
我的数据库表是: author book repeat ------ ----
众所周知,我们可以简化 SELECT * FROM A WHERE X=1 OR X=4 OR X=9 如下: SELECT * FROM A WHERE X IN (1,4,9) “多维”条件是否有
我在大学时正在编写 Android 应用程序。 用户被询问必须回答的问题。 我通过服务器的 HTTP 请求/响应获取问题。它们以字符串形式传递。该字符串看起来像这样,有两个问题: (requested
我怎样才能在 C++ 中使用 vector 制作这样的表格: 65 A 66 B 67 C 我是用这样的动态二维数组完成的: int** ary = new int*[2]; for (int
运行时: if (data.custaccount.webaddress) { alert('found it'); } 我得到了错误 data.custaccount is undefined
如何按名称对对象数组进行排序。 数组构造数组的例子: object[] o = new object[items.Count+(row-exists)]; int i = 0;
如何创建二维 vector ?我知道在二维数组中,我可以这样表达: a[0][1]=98; a[0][2]=95; a[0][3]=99; a[0][4]=910; a[1][0]=98; a[1][
这是我的第一个问题。 我有很多组数据。它们中的每一个都应该在 DataFrame 中呈现。我试图通过将 DataFrame 作为多维元组的一项来实现这一点,例如: data[0][1].Glucose
有人可以建议改进我对多维 lstm 的实现吗? 它非常慢并且使用大量内存。 class MultiDimentionalLSTMCell(tf.nn.rnn_cell.RNNCell): """ Ad
我已为我在另一个基于 WPF 的应用程序中使用的 Azure 移动服务添加了到 MVC 站点的连接。 我不太熟悉如何通过移动服务在 MVC 中显示数据,找不到任何很好的示例来展示如何在页面上(例如在网
这样写对吗?有没有更好的写法呢?这与我正在使用的真实数据类似,我想确保将对象或数组正确嵌套在 JSON 文件中。 var data = [ { "department": "I
我有一个HashMap当我调用 .toString() 时,它看起来像这样: {somekey=false, anotherKey=someString, thirdKey={nestedKey=he
是否有更 pythonic 的方式来执行以下操作: import numpy as np def diagonal(A): (x,y,y) = A.shape diags = []
我有以下结构: import java.util.LinkedHashMap; ... LinkedHashMap level0 = new LinkedHashMap(); LinkedHashMa
如何访问 Arraylist 中的整数数组(两者均可调整大小)? 到目前为止我有这个代码: List vertices_passed = new ArrayList(); 我想进入vertices_p
我想知道 MiniZinc 语言中是否可以有(多维)数组的数组。 确实,我想解决 worker 的时间表问题。我的目标是检查它们是否每周至少有 1 天可用。每个 worker 都由一个整数索引,我每周
这个问题已经有答案了: how is axis indexed in numpy's array? (5 个回答) 已关闭 3 年前。 我还没有理解 NumPy 中多维数组中的轴之间的区别。你能给我解
我试图 $.post 包含一些表单数据以及数组中的一些其他数据。我可以将数组插入表单数据的其余部分,但我丢失了数组中的键,并且数据仅表示为字符串,我想我要求的是多维数组? 这是当前的响应字符串: ar
我是 numpy 新手,试图理解 here 中的以下示例。我无法理解的输出 >>> palette[image] 当索引数组 a 是多维时,单个索引数组引用 a 的第一个维度。以下示例通过使用调色板将
这个问题已经有答案了: JavaScript associative array to JSON (5 个回答) JSON.stringify doesn't work with normal Jav
我是一名优秀的程序员,十分优秀!