本篇文章是对使用dump函数,给php加断点测试进行了详细的分析介绍,需要的朋友参考下
复制代码 代码如下:
function dump($var, $echo=true,$label=null, $strict=true)
{
$label = ($label===null) ? '' : rtrim($label) . ' ';
if(!$strict) {
if (ini_get('html_errors')) {
$output = print_r($var, true);
$output = "
".$label.htmlspecialchars($output,ENT_QUOTES)."
'. $label. htmlspecialchars($output, ENT_QUOTES). '