I want to concatenate some string in this way:
"string A"
"string B"
my expectation result : "string A \n string B"
And Here my initial array look like this :
array:1 [
0 => array:2 [
"foo" => array:1 [
0 => "string A"
]
"bar" => array:1 [
0 => "string B"
]
]
]
What is the best practice for doing this?