Home >Backend Development >PHP Tutorial >php中自定义函数dump查看数组信息类似var_dump_php技巧

php中自定义函数dump查看数组信息类似var_dump_php技巧

WBOY
WBOYOriginal
2016-05-17 08:50:281001browse

这个很早就有了,比php自带的var_dump好用多了。

复制代码 代码如下:

function dump($vars, $label = '', $return = false) {
if (ini_get('html_errors')) {
$content = "
\n"; <br>if ($label != '') { <br>$content .= "<strong>{$label} :</strong>\n"; <br>} <br>$content .= htmlspecialchars(print_r($vars, true)); <br>$content .= "\n
\n";
} else {
$content = $label . " :\n" . print_r($vars, true);
}
if ($return) { return $content; }
echo $content;
return null;
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn