我在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中看到的读取它。
答案 0 :(得分:5)
在你的php.ini文件中取消注释这一行。
zend_extension =“D:\ xampp \ php \ ext \ php_xdebug.dll”
答案 1 :(得分:4)
你之前使用的是Xdebug;你现在不用它。没有它,没有颜色,并且没有HTML换行符(使用nl2br
,将Content-type标头更改为text/plain
或将输出放在<pre>
块中。 / p>
答案 2 :(得分:1)
当我在PHP5工作时,这个主题帮助了我。通过全新安装Xampp( PHP 7 + ),不再安装xdebug。必须手动完成。下面的解释:
phpinfo();
并将其粘贴到the xdebug website上的文本区域Xdebug installed: no
操作完成后,再次检查phpinfo();
这次我们得到Xdebug installed: 2.6.0
。 xdebug工作!