php中自定义函数dump查看数组信息类似var_dump

前端之家收集整理的这篇文章主要介绍了php中自定义函数dump查看数组信息类似var_dump前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这个很早就有了,比PHP自带的var_dump好用多了。
<div class="codetitle"><a style="CURSOR: pointer" data="85244" class="copybut" id="copybut85244" onclick="doCopy('code85244')"> 代码如下:

<div class="codebody" id="code85244">
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;
}

原文链接:https://www.f2er.com/php/25192.html

猜你在找的PHP相关文章