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
)
我應該怎麼使用?
是什麼)的getData的代碼(其可能使得它,返回數組[0] – 2010-08-15 12:42:50