标签: php html
给出一个php变量
$a="<b>hello</b>"; echo $a; //prints <b>hello<b>
但是我希望它以粗体打印你好的格式。 请告诉我应该做些什么...
答案 0 :(得分:0)
echo "<b>" . $a . "</b>";