xampp windows 上的 var_dump 输出不可读

发布于 2024-09-07 09:26:23 字数 314 浏览 3 评论 0原文

我在 var_dump 方面遇到一些问题。我在 Windows 上使用 xampp 1.7.3。

我认为在以前的版本中,我可以使用 var_dump 输出变量,而无需 print "

" print "
" firebug 没有安装在我的 firefox 上,并且我没有使用 xdebug

正式地,我什至有红色且格式良好的输出。现在它完全不可读。任何人都可以给我一些如何纠正的提示。html_errors 是我在 php_info 中看到的。感谢您阅读本文。

I'm having some issue with var_dump.i'm using xampp 1.7.3 on windows.

I think in previous version i could output a variable with var_dump without print "<pre>" print "</pre>" firebug is not installed on my firefox and i'm not using xdebug.

Formally i have even red colored and nicely formatted output.Now it's completly unreadable.Can anyonw give me a tips n how to correct that.And html_errors is on from what i saw in php_info.thanks for reading this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风和你 2024-09-14 09:26:34

当我使用 PHP5 时,这个主题对我很有帮助。全新安装 Xampp (PHP 7+) 后,不再安装 xdebug。必须手动完成。在解释下方:

  1. 转到 https://xdebug.org/wizard.php
  2. 制作 phpinfo (); 在您的项目上并将其粘贴到 xdebug 网站 上的文本区域中
  3. 它会返回您系统上的一些信息,例如Xdebug安装:否
  4. 按照结果页面底部的说明进行
  5. 操作

    操作后,如果您再次检查您的phpinfo();

    这次我们安装了Xdebug:2.6.0。 xdebug 工作了!

This topic helped me at the time I was working in PHP5. With a fresh install of Xampp (PHP 7+), xdebug is no longer installed. It must be done manually. Below the explanations :

  1. Goto https://xdebug.org/wizard.php
  2. Make a phpinfo(); on your project and paste it in the textarea on the xdebug website
  3. It returns some informations on your system like Xdebug installed: no
  4. Follow the instructions in the bottom of the results page
  5. After the manipulation, if you check again your phpinfo();

    This time we get Xdebug installed: 2.6.0. xdebug works !

呆° 2024-09-14 09:26:33

在 php.ini 文件中取消注释此行。

zend_extension = "D:\xampp\php\ext\php_xdebug.dll"

Un-comment this line in you php.ini file.

zend_extension = "D:\xampp\php\ext\php_xdebug.dll"

青萝楚歌 2024-09-14 09:26:30

您之前使用过 Xdebug;你现在没有使用它。没有它,就没有颜色,也没有 HTML 换行符(使用 nl2br,将 Content-type 标头更改为 text/plain 或将输出放在 < code>

 块)。

参见Xdebug手册上的“可变显示特性”

You were using Xdebug before; you're not using it now. Without it, there are no colors, and there are no HTML line breaks (use nl2br, change the Content-type header to text/plain or put the output in a <pre> block).

See the "Variable Display Features" on the manual of Xdebug.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文