Home  >  Article  >  Backend Development  >  数结合并

数结合并

WBOY
WBOYOriginal
2016-06-13 11:32:391086browse

数组合并
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 />


求达到合并的效果:
<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 />

Statement:
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