如何在txt文件中用bash颜色保存彩色文本?

时间:2017-05-01 09:44:40

标签: php bash fwrite

我不知道如何正确地制作这段代码。

我有这样的代码:

$hasil = "\e[1;42mGreen Text";
$fp = fopen('data.txt', 'w');
fwrite($fp, $hasil . "\r\n");
fclose($fp);

我希望彩色文本存储在data.txt中。

如果是这样,它不会变成彩色文本,但代码会保存到文本中。

1 个答案:

答案 0 :(得分:0)



$hasil = "<a style='color:green'>Text</a>";
$fp = fopen('data.html', 'w');
fwrite($fp, $hasil . "\r\n");
fclose($fp);
&#13;
&#13;
&#13;

在html文件中保存数据后,在浏览器中打开它

或查看另一个例子

$output = convertBash('[1;42m Text');
echo $output;
//
// Converts Bashoutput to colored HTML
//
function convertBash($code) {
    $dictionary = array(
        '[1;30m' => '<span style="color:black">',
        '[1;31m' => '<span style="color:red">', 
        '[1;42m' => '<span style="color:green">',   
        '[1;33m' => '<span style="color:yellow">',
        '[1;34m' => '<span style="color:blue">',
        '[1;35m' => '<span style="color:purple">',
        '[1;36m' => '<span style="color:cyan">',
        '[1;37m' => '<span style="color:white">',
        '[m'   => '</span>'
    );
    $htmlString = str_replace(array_keys($dictionary), $dictionary, $code);
    return $htmlString;
}