在xampp窗口上使用var_dump的不可读输出

时间:2010-06-27 18:09:32

标签: php arrays var-dump

我在windows上使用xampp 1.7.3时遇到var_dump.i'm的问题。

我认为在以前的版本中,我可以输出一个var_dump的变量而print "<pre>" print "</pre>" firebug不是installed on my firefox而我没有使用xdebug

正式我甚至有红色和格式很好的输出。现在它完全不可读。可以给我一个如何纠正它的提示。并且html_errors是从我在php_info.thanks中看到的读取它。

3 个答案:

答案 0 :(得分:5)

在你的php.ini文件中取消注释这一行。

zend_extension =“D:\ xampp \ php \ ext \ php_xdebug.dll”

答案 1 :(得分:4)

你之前使用的是Xdebug;你现在不用它。没有它,没有颜色,并且没有HTML换行符(使用nl2br,将Content-type标头更改为text/plain或将输出放在<pre>块中。 / p>

请参阅"Variable Display Features" on the manual of Xdebug

答案 2 :(得分:1)

当我在PHP5工作时,这个主题帮助了我。通过全新安装Xampp( PHP 7 + ),不再安装xdebug。必须手动完成。下面的解释:

  1. 转到https://xdebug.org/wizard.php
  2. 在您的项目上制作phpinfo();并将其粘贴到the xdebug website上的文本区域
  3. 它会在您的系统上返回一些信息,例如Xdebug installed: no
  4. 按照结果页面底部的说明进行操作
  5. 操作完成后,再次检查phpinfo();

    这次我们得到Xdebug installed: 2.6.0。 xdebug工作!