実行print_r
すると、ページとコードのページが返されます。<pre>
タグでラップされていても、ページをスクロールして子を親に一致させるのは困難です。
print_rを折りたたみ可能なフィールドにテーマ設定する方法はありますか?たぶんオンラインジェネレーターで、の内容を投稿してprint_r($array);
、折りたたみ可能なフィールドのテーブルを取得できます。
たとえば、Drupalには、まさにそれを行う Develと呼ばれるモジュールがあります。
実行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()
結果は、配列が折りたたみ可能になったことを除いて、関数の結果と同じように見えます。
これは、オリジナルとクリスチャンの修正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;\">";
}