I am looking for somthing that will parse a multidimentional array of any
size, and return a key / value listing for debugging....

Example:

if I have an array such as...

$arr[name] = dallas
$arr[address][city] = austin
$arr[address][state] = Texas
$arr[somthing][somthing_else][blah1]= some_value1
$arr[somthing][somthing_else][blah2]= some_value2
$arr[somthing][somthing_else][blah3]= some_value3

I would want the result to be displaied as:

ARR
    name --- dallas
    address --- city --- austin
    address --- state --- Texas
    somthing --- somthing_else --- blah1 --- some_value1
    somthing --- somthing_else --- blah1 --- some_value1



Reply via email to