这是与this one类似的问题。我想将ANSI转义序列(特别是颜色)转换为HTML。但是,我想用PHP完成这个。是否有任何库或示例代码可以执行此操作?如果没有,任何可以让我参与自定义解决方案的东西?
答案 0 :(得分:8)
str_replace解决方案在颜色“嵌套”的情况下不起作用,因为在ANSI颜色代码中,一个ESC [0m重置是重置所有属性所需的全部内容。在HTML中,您需要SPAN结束标记的确切数量。
“嵌套”用例的解决方法如下:
// Ugly hack to process the color codes
// We need something like Perl's HTML::FromANSI
// http://search.cpan.org/perldoc?HTML%3A%3AFromANSI
// but for PHP
// http://ansilove.sourceforge.net/ only converts to image :(
// Technique below is from:
// http://stackoverflow.com/questions/1375683/converting-ansi-escape-sequences-to-html-using-php/2233231
$output = preg_replace("/\x1B\[31;40m(.*?)(\x1B\[0m)/", '<span style="color: red">$1</span>$2', $output);
$output = preg_replace("/\x1B\[1m(.*?)(\x1B\[0m)/", '<b>$1</b>$2', $output);
$output = preg_replace("/\x1B\[0m/", '', $output);
(取自我的Drush Terminal问题:http://drupal.org/node/709742)
我也在寻找PHP库来轻松完成这项工作。
P.S。如果要将ANSI转义序列转换为PNG /图像,可以使用AnsiLove。
答案 1 :(得分:3)
我不知道PHP中的任何这样的库。但是如果你有一个有限颜色的一致输入,你可以使用一个简单的str_replace()
:
$dictionary = array(
'ESC[01;34' => '<span style="color:blue">',
'ESC[01;31' => '<span style="color:red">',
'ESC[00m' => '</span>' ,
);
$htmlString = str_replace(array_keys($dictionary), $dictionary, $shellString);
答案 2 :(得分:3)
There are library now: ansi-to-html
And very easy to use:
$converter = new AnsiToHtmlConverter();
$html = $converter->convert($ansi);