2

当我直接从 Windows PowerShell 运行 Behat 测试时,输出是用颜色格式化的:

在此处输入图像描述

runbehat.php但是当我使用以下命令运行下面的 php 脚本时php runbehat.php

<?php
echo system(__DIR__.'/bin/behat --profile local');

它产生:

在此处输入图像描述

我怎样才能让它以彩色显示?

4

1 回答 1

2

添加--colors选项。

从您可以使用以下命令显示的 behat 帮助中-h

--colors  Force ANSI color in the output. By default color support is
          guessed based on your platform and the output if not specified.
于 2016-12-31T17:31:07.193 回答