标签: php
我正在使用此函数为用户名着色,以防用户名@username存在于字符串中。
@username
PHP
$string="this **text** contains a second **content**"
我想将文本
我尝试过但没事
function bold_word($string) { return preg_replace('/(\**+)/', "<b>$1</b>", $string); }