php数组美化_PHP格式化输出数组,⼀⽬了然在PHP输出数组的时候,我们通常使⽤print_r(),但是输出没有换⾏,看起来很费劲,于是乎,我们⾃⼰定义⼀个函数来完成:
[php]
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;phpjson格式化输出
return null;
}
[/php]

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。