有些情况下,print_r的输出非常复杂,冗长且难以阅读,例如对象,嵌套数组,嵌套对象,嵌套数组,…
是否有图书馆或工具来帮助开发人员阅读这些信息?像DOM的DOM检查器?
解决方法:
在筛选print_r输出时,我经常使用此功能.这是一个很棒的快速选择.
function print_r_tree($data)
{
// capture the output of print_r
$out = print_r($data, true);
// replace something like '[element] => (' with ...
$out = preg_replace('/([ \t]*)(\[[^\]]+\][ \t]*\=\>[ \t]*[a-z0-9 \t_]+)\n[ \t]*\(/iUe',"'\\1\\2
// replace ')' on its own on a new line (surrounded by whitespace is ok) with '
$out = preg_replace('/^\s*\)\s*$/m', '
// print the javascript function toggleDisplay() and then the transformed output
echo ''."\n$out";
}
?>
如果您使用Drupal作为标记暗示,您可以将它放在主题的template.php文件中.
标签:php,drupal,drupal-modules
来源: https://codeday.me/bug/20190613/1235608.html