I got the problem , I want make preety debug function that shows array keys 
and values and name of the variable containing array:
Here it is:

function show_arr($array)
//wyswietla wartosci z tablicy wraz z kluczami (przeznaczone do debugowania)
{
        if(DABUG)
        {
        echo "<b>-------------------------------------------</b><br>";
        echo "Array contents<b>".strval($array)."</b><br>";
                while(list($k,$v)=each($array))
                {
                        echo "$k = $v<br>"; 
                }
        echo "<b>-------------------------------------------</b>";
        }
}

unfortunatly strval want work with arrays...
Any possible solution how to get name of the array variable?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to