<code>function dump($vars, $label = '', $return = false) { if (ini_get('html_errors')) { $content = "<pre class="brush:php;toolbar:false">\n"; if ($label != '') { $content .= "<strong>{$label} :</strong>\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教程有興趣的朋友有所幫助。