如何在我编写的PHP中更改回显消息的颜色并使消息居中。我的路线是:
echo 'Request has been sent. Please wait for my reply!';
答案 0 :(得分:113)
如何写出一些转义序列?
echo "\033[01;31m Request has been sent. Please wait for my reply! \033[0m";
不能通过浏览器工作,只能从控制台;))
答案 1 :(得分:12)
如果你把它输出到浏览器,写出一些HTML标签和一些CSS怎么样?
echo '<span style="color:#AFA;text-align:center;">Request has been sent. Please wait for my reply!</span>';
虽然只能通过浏览器在控制台上运行。
答案 2 :(得分:3)
如果您在Windows上使用命令行,请下载程序ANSICON,使控制台能够接受颜色代码。 ANSICON可在https://github.com/adoxa/ansicon/releases
获取答案 3 :(得分:1)
如果您想将ANSI颜色发送到控制台,请获取此小包装
答案 4 :(得分:1)
试试这个
<?php
echo '<i style="color:blue;font-size:30px;font-family:calibri ;">
hello php color </i> ';
//we cannot use double quote after echo , it must be single quote.
?>
答案 5 :(得分:1)
这是一个老问题,但没有人回答关于在终端中居中文本的问题。
/**
* Centers a string of text in a terminal window
*
* @param string $text The text to center
* @param string $pad_string If set, the string to pad with (eg. '=' for a nice header)
*
* @return string The padded result, ready to echo
*/
function center($text, $pad_string = ' ') {
$window_size = (int) `tput cols`;
return str_pad($text, $window_size, $pad_string, STR_PAD_BOTH)."\n";
}
echo center('foo');
echo center('bar baz', '=');
答案 6 :(得分:1)
每次尝试都对我有用。
echo "<font color='blue'>".$myvariable."</font>";
由于html5不支持字体,您可以这样做
echo "<p class="variablecolor">".$myvariable."</p>";
然后在CSS中做
.variablecolor{
color: blue;}
答案 7 :(得分:0)
如果它回显到浏览器,你应该使用CSS。这还需要将注释包装在HTML标记中。类似的东西:
echo '<p style="color: red; text-align: center">
Request has been sent. Please wait for my reply!
</p>';