首頁  >  文章  >  後端開發  >  工具|PHP格式化輸出數組

工具|PHP格式化輸出數組

WBOY
WBOY原創
2016-07-29 08:58:203205瀏覽
<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; }

參考:

  1. http://www.birdol.com/web/751.html

以上就介紹了工具|PHP格式化輸出數組,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn