<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 チュートリアルに興味のある友人に役立つことを願っています。