所以,我有兩個數組如何將兩個數組的字符串值與PHP成對連接?
Array
(
[0] => test
[1] => test 1
[2] => test 2
[3] => test 3
)
和
Array
(
[0] => test
[1] => test 1
[2] => test 2
[3] => test 3
)
我想,所以我得到這樣一個數組將它們結合在一起?
Array
(
[0] => test test
[1] => test 1 test 1
[2] => test 2 test 2
[3] => test 3 test 3
)
我發現很多功能,如array_merge
和array_combine
但沒有什麼做什麼,我想做的事情。
任何想法?
在此先感謝。
最大
是的,我想知道是否有一個功能,它爲我做^ _^ –
鑑於有PHP中很多內置的函數,我不認爲這是一個不合理的問題。 – mfonda
@mfonda謝謝 –