I have a multidimensional array and I\'m trying to find out how to simply \"echo\" the elements of the array. The depth of the array is not known, so it could be deeply nest
print_r($arr) usually gives pretty readable result.
print_r($arr)