2

当我在 WAMP 上的 Windows 中运行 PHPUnit 时,有时会得到如下奇怪的输出:

PHPUnit 3.7.22 by Sebastian Bergmann.
Configuration read from D:\MrDWorkspace\Zend\mrdelivery\phpunit.xml
←[41;37mF←[0m.... <-------- this is the weird output

这是什么意思?

4

2 回答 2

4

这些是屏幕显示的颜色代码。如果您使用的是简单的 DOS 窗口,则这些窗口不起作用,并且可以从命令行关闭(省略 --colors 选项)。命令行参数可以在PHPUnit 手册中找到。

可以在 Windows(PowerShell 或其他东西)中运行“更智能”的 shell,然后正确显示颜色。

于 2013-08-06T14:02:57.927 回答
2

您可以使用ANSICON执行此操作

  1. 下载 ANSICON。
  2. 将文件解压缩到 c:\ansicon\(例如)。
  3. 在控制台 (cmd) 上使用“cd c:\ansicon”转到 ANSICON 文件夹,然后键入不带引号的“ansicon -i”。
  4. 将“c:\ansicon”添加到您的路径环境变量中。
  5. 享受!

注意:Windows 32 位 = x86 文件夹,Windows 64 位 = x64 文件夹。

于 2013-09-04T00:06:03.333 回答