如何使用javascript更改print_r按钮名称

时间:2017-09-01 08:40:28

标签: javascript php arrays preg-replace preg-replace-callback

我有一个直接从php documentation site复制的代码。该代码使我能够打印" print_r"以可读格式运行。代码在

之下
    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<button onClick=\"javascript:toggleDisplay(\''.(\$id = substr(md5(rand().'\\0'), 0, 7)).'\');\">
            \\2 
             </button><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<pre>$out</pre>";
}

上面的代码输出了三个按钮,如[ [0] => Array ], [ [1] => Array ] and [ [2] => Array ]。 但我希望按钮以下列格式[Good], [Average], and [Worst]输出。我试图改变&#34; \ 2&#34;在下面的JavaScript代码段按钮的文本中

$out = preg_replace('/([ \t]*)(\[[^\]]+\][ \t]*\=\>[ \t]*[a-z0-9 \t_]+)\n[ \t]*\(/iUe',
    "'\\1<button onClick=\"javascript:toggleDisplay(\''.(\$id = substr(md5(rand().'\\0'), 0, 7)).'\');\">
//Writing Javascript code to display buttons instead of "//2"
            <script type= \"text/javascript\">
            var behaviours = new array('Good', 'Average', 'Worst');
            for(var i = 0; i < behaviours.length; i++)
            document.write(behaviours[i]);
            </script>           

             </button><div id=\"'.\$id.'\" style=\"display: none;\">'",
        $out);

但它给了我正则表达式和标识符错误。我该怎么办呢。

1 个答案:

答案 0 :(得分:0)

盲目地从php.net文档评论中复制一些随机代码片段并不是一个好方法。特别是如果你显然不知道自己在做什么。了解您正在做的事情。

话虽如此。为什么不在$data之前更改print_r数组?

$data = ['Good' => $data[0], 'Average' => $data[1], 'Worst' => $data[2]];