我有来自 $_POST 的以下数组:
array {
["item"]=> array() {
[0]=> "pen"
[1]=> "pencil"
[2]=> "ruler"
array {
["note"]=> array() {
[0]=> "permanent"
[1]=> "not so permanent"
[2]=> "measures stuff"
array {
["cost"]=> array() {
[0]=> "67.99"
[1]=> ".15"
[2]=> "1.49"
我想合并成一个单行项目,例如
array {
["line_items"]=> array() {
["0"]=> array() {
[item]=> "pen"
[note]=> "permanent"
[cost]=> "67.99"
["1"]=> array() {
[item]=> "pencil"
[note]=> "not so permanent"
[cost]=> ".15"
["3"]=> array() {
[item]=> "ruler"
[note]=> "measures stuff"
[cost]=> "1.49"
我看过array_merge、array_merge_recursive、array_combine,但是所有这些函数都没有做我想要的。我已经为每个循环和 for 循环尝试了一些不同的方法,但我就是无法理解它。
请询问您是否需要更多信息,这不是很清楚,但就像我说的那样,我的脑袋 - 努力解决这个问题。