数结合并

WBOY
Release: 2016-06-13 11:32:39
Original
1086 people have browsed it

数组合并
2个数组:

<br />//数组a<br />array (<br />  'SU13080800340' => <br />  array (<br />    0 => 'CVT121015001',<br />    1 => 'CVT121015002',<br />    2 => 'CVT121226001',<br />  ),<br />)<br />//数组b<br />array (<br />  'stock_no' => 'SU13080800340',<br />  'adress' => 'B',<br />  'arr_time' => '2013-08-14 09:00:00',<br />  'c_type' => 'P32E',<br />  'cust_no' => '310F61VA5A',<br />  'mount_total' => '3',<br />  'total' => '48',<br />  'c1_time' => '2013-08-10 15:00:00',<br />)<br />
Copy after login


求达到合并的效果:
<br />array (<br />'0' =><br />array (<br />  'stock_no' => 'SU13080800340',<br />  'adress' => 'B',<br />  'arr_time' => '2013-08-14 09:00:00',<br />  'c_type' => 'P32E',<br />  'cust_no' => '310F61VA5A',<br />  'mount_total' => '3',<br />  'total' => '48',<br />  'c1_time' => '2013-08-10 15:00:00',<br />  'packageno' => 'CVT121015001',<br />),<br />'1' =><br />array (<br />  'stock_no' => 'SU13080800340',<br />  'adress' => 'B',<br />  'arr_time' => '2013-08-14 09:00:00',<br />  'c_type' => 'P32E',<br />  'cust_no' => '310F61VA5A',<br />  'mount_total' => '3',<br />  'total' => '48',<br />  'c1_time' => '2013-08-10 15:00:00',<br />  'packageno' => 'CVT121015002',<br />),<br />'2' =><br />array (<br />  'stock_no' => 'SU13080800340',<br />  'adress' => 'B',<br />  'arr_time' => '2013-08-14 09:00:00',<br />  'c_type' => 'P32E',<br />  'cust_no' => '310F61VA5A',<br />  'mount_total' => '3',<br />  'total' => '48',<br />  'c1_time' => '2013-08-10 15:00:00',<br />  'packageno' => 'CVT121016001',<br />),<br />)<br />
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template