8

実行print_rすると、ページとコードのページが返されます。<pre>タグでラップされていても、ページをスクロールして子を親に一致させるのは困難です。

print_rを折りたたみ可能なフィールドにテーマ設定する方法はありますか?たぶんオンラインジェネレーターで、の内容を投稿してprint_r($array);、折りたたみ可能なフィールドのテーブルを取得できます。

たとえば、Drupalには、まさにそれを行う Develと呼ばれるモジュールがあります。Develスクリーンショット

4

4 に答える 4

10

私が何かを見逃していない限り、答えはあなたのスクリーンショットにあります:http: //krumo.sourceforge.net/

編集(2019):https ://github.com/kint-php/kintを試してください。現在も維持されています。

于 2012-10-02T20:31:54.300 に答える
9

この投稿のおかげで、ここに解決策があります。

の直前に次の関数を挿入します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()結果は、配列が折りたたみ可能になったことを除いて、関数の結果と同じように見えます。

于 2012-10-02T21:03:10.377 に答える
8

JSONとして出力し、http://jsonviewer.stack.hu/に貼り付けて、読みやすく、折りたたむことができます。

json_encode($array);

例: ここに画像の説明を入力してください

于 2012-10-02T20:31:19.450 に答える
0

これは、オリジナルクリスチャンの修正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;\">";
}
于 2019-10-30T20:56:48.153 に答える