function dump($vars, $label = '', $return = false) {    if (ini_get('html_errors')) {        $content = \n;        if ($label != '') {            $content .= {$label} :\n;        }        $content .= htmlspecialchars(print_r($vars, true));        $content .= \n
\n;    } else {        $content = $label .  :\n . print_r($vars, true);    }    if ($return) { return $content; }    echo $content;    return null;}参考:
http://www.birdol.com/web/751.html
                    以上就介绍了工具|php格式化输出数组,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。
   
 
   