2010-08-15 39 views
2

array_push($數組的getData())給我:PHP array_push不正確的功能,使用什麼?

Array 
(
    [customer] => One 
    [itemno] => Yellow Ribbon 

) 
Array 
(
    [customer] => One 
    [itemno] => Blue Band 
) 
Array 
(
    [0] => Array 
     (
      [customer] => Two 
      [itemno] => Red Tape 
     ) 
) 

但我想要的是:

Array 
(
    [customer] => One 
    [itemno] => Yellow Ribbon 

) 
Array 
(
    [customer] => One 
    [itemno] => Blue Band 
) 
Array 
(
    [customer] => Two 
    [itemno] => Red Tape 
) 

我應該怎麼使用?

+1

是什麼)的getData的代碼(其可能使得它,返回數組[0] – 2010-08-15 12:42:50

回答

1

假設你正在使用數字鍵在$陣列,一個簡單的array_merge($數組的getData())應該工作,因爲的getData()顯然是返回一個數字索引多維數組。

0

這將你想要做什麼......

$array[] = getData();