Doing print_r
,返回页面和代码页面;滚动页面以将孩子与父母相匹配太难了,即使是用<pre>
标签包裹。
有没有办法将 print_r 主题化为可折叠字段。也许是一个在线生成器,我可以在其中发布内容print_r($array);
并获取可折叠的字段表。
例如,在 Drupal 中有一个名为Devel的模块,它就是这样做的。
除非我遗漏了什么,否则答案就在你的截图中:http: //krumo.sourceforge.net/
编辑(2019 年):尝试https://github.com/kint-php/kint,因为它今天仍在维护。
感谢这篇文章,这是一个解决方案。
在 .之前插入以下函数print_r
。
<?php
function print_r_tree($data)
{
// capture the output of print_r
$out = print_r($data, true);
// replace something like '[element] => <newline> (' with <a href="javascript:toggleDisplay('...');">...</a><div id="..." style="display: none;">
$out = preg_replace('/([ \t]*)(\[[^\]]+\][ \t]*\=\>[ \t]*[a-z0-9 \t_]+)\n[ \t]*\(/iUe',"'\\1<a href=\"javascript:toggleDisplay(\''.(\$id = substr(md5(rand().'\\0'), 0, 7)).'\');\">\\2</a><div id=\"'.\$id.'\" style=\"display: none;\">'", $out);
// replace ')' on its own on a new line (surrounded by whitespace is ok) with '</div>
$out = preg_replace('/^\s*\)\s*$/m', '</div>', $out);
// print the javascript function toggleDisplay() and then the transformed output
echo '<script language="Javascript">function toggleDisplay(id) { document.getElementById(id).style.display = (document.getElementById(id).style.display == "block") ? "none" : "block"; }</script>'."\n$out";
}
?>
然后,print_r()
用print_r_tree()
;替换 像这样:
<pre><?php echo print_r_tree(get_defined_vars()); ?></pre>
不要忘记<pre>
标签。
结果看起来与print_r()
函数的结果相同,只是现在数组是可折叠的。
这是原始版本与Christian's fix的组合,由于preg_replace
弃用(PHP 7)而更新:
function print_r_tree($data)
{
// capture the output of print_r
$out = print_r($data, true);
// replace something like '[element] => <newline> (' with <a href="javascript:toggleDisplay('...');">...</a><div id="..." style="display: none;">
$out = preg_replace_callback('/([ \t]*)(\[[^\]]+\][ \t]*\=\>[ \t]*[a-z0-9 \t_]+)\n[ \t]*\(/iU', 'print_r_tree_callback', $out);
// replace ')' on its own on a new line (surrounded by whitespace is ok) with '</div>
$out = preg_replace('/^\s*\)\s*$/m', '</div>', $out);
// print the javascript function toggleDisplay() and then the transformed output
return '<script language="Javascript">function toggleDisplay(id) { document.getElementById(id).style.display = (document.getElementById(id).style.display == "block") ? "none" : "block"; }</script>'."\n$out";
}
function print_r_tree_callback($matches) {
$id = substr(md5(rand().$matches[0]), 0, 7);
return "$matches[1]<a href=\"javascript:toggleDisplay('$id');\">$matches[2]</a><div id='$id' style=\"display: none;\">";
}