Hello, I'm relatively new to programming and I was wondering how I would convert an array:
[[0,0,0,0,0,0],
[1,1,1,1,1,1],
[2,2,2,2,2,2],
[3,3,3,3,3,3],
[4,4,4,4,4,4],
[5,5,5,5,5,5]];
into a string of comma and line-return delineated indices, like:
"0,0,0,0,0,0
1,1,1,1,1,1
2,2,2,2,2,2
3,3,3,3,3,3
4,4,4,4,4,4
5,5,5,5,5,5"
with a dynamic function? I've searched for an implode() function but I couldn't find anything. Thanks in advance!