I have a awkward need but I need to interleave an array with another array before imploding the result. I guess my better option would be less talk more example
Array number one
[0] => "John has a ", [1] => "and a", [2] => "!"
Array number two
[0] => 'Slingshot", [1] => "Potato"
I need to produce
John has a Slingshot and a Potato!
My question is can I do that with an implode or I must build my own function?