执行print_r
,返回代码的页面和页面;滚动页面以使孩子与父母匹配太难了,甚至包裹着<pre>
标签。
有没有办法将print_r主题化为可折叠字段。也许是一个在线生成器,我可以在其中发布print_r($array);
的内容并获得可折叠的字段表。
例如,在Drupal中,有一个名为Devel的模块就是这样做的。
答案 0 :(得分:9)
除非我遗漏了某些内容,否则答案就在截图中:http://krumo.sourceforge.net/
答案 1 :(得分:8)
答案 2 :(得分:8)
感谢this post,这是一个解决方案。
在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()
函数的结果相同,只是现在数组是可折叠的。
答案 3 :(得分:0)
这是original和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;\">";
}