问问题
60 次
3 回答
3
`$row['DESCRIPTION'] = str_replace(array('[B]','[!B]'), array('<b>', '</b>'), $row['DESCRIPTION']);`
于 2013-09-23T09:27:24.280 回答
2
If [B] for <b> and [!B] for </b>
利用:
<?php
$row['DESCRIPTION'] = "In this string the [B]word[!B] is bolded";
$text = str_replace("[B]","<b>",$row['DESCRIPTION']);
$text = str_replace("[!B]","</b>",$text);
echo $text;
?>
输出:
在这个字符串中,单词是粗体的
于 2013-09-23T09:18:35.220 回答
0
使用str_replace
功能可能对您的情况有所帮助。
于 2013-09-23T09:09:44.990 回答