Morning! (if it is for you)
I have had a chance to work with implode, and it works as advertised. Still it is not what I seek. So, I am considering different algorithms for the problem.
I think my goal is best described as an export format. Tab or comma delimited is fine.
Given an array of two rows:
A, B, C
D, E, F
Implode(',',array) returns:
A,B,C,D,E,F
What I seek is:
A<tab>B<tab>C<cr>
D<tab>E<tab>F
or the comma delimited equivalent.
Would the best approach be to iterate through the array, row by row? If so, how do I code that?