Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a small ajax application and need to see if the values being generated in the background are what is expected. The value returned by the quest can be quite a complex multidimensional array, is there a way to convert this into a string so that it can be shown with alert?

Is there any other way of seeing these values?

Any advice appreciated.

Thanks.

share|improve this question

6 Answers

print_r, var_dump or var_export are good candidates. while coding an ajax application, you might also want to look at json_encode.

share|improve this answer

If you want to show it with javascript, I would recommend json_encode(), everything else has been covered by knittl's answer.

share|improve this answer
<script type="text/javascript">
alert(<?=print_r($array)?>);
</script>
share|improve this answer

I found this function useful:

function array2str($array, $pre = '', $pad = '', $sep = ', ')
{
    $str = '';
    if(is_array($array)) {
        if(count($array)) {
            foreach($array as $v) {
                $str .= $pre.$v.$pad.$sep;
            }
            $str = substr($str, 0, -strlen($sep));
        }
    } else {
        $str .= $pre.$array.$pad;
    }

    return $str;
}

from this address: http://blog.perplexedlabs.com/2008/02/04/php-array-to-string/

share|improve this answer

The implode command returns an array as a string.

share|improve this answer
1  
This is fine for a single array, but does not work out of the box with multidimensional arrays. You would need to loop through each array. – Eruant Oct 8 '12 at 15:27

you can also consider FirePHP http://www.firephp.org

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.