使用PHP,如何将HTML字符串'+text+'
转换为'<em>text</em>'
,以便用户在输入中键入+ text +时,输出为 text ?
答案 0 :(得分:2)
您可以在旁边爆炸或正则表达式
中使用str_replace$text_string = '+TEST+';
$text = explode("+", $text_string);
$text = $text[1];
$replaced_text = str_replace("+$text+", "<em>$text</em>", $text_string);
echo $replaced_text; // output: <em>TEST</em>
答案 1 :(得分:0)
如果您想要做的就是使用,您可以这样做。
$input = "+text+";
$input = trim($input, '+');
$input = '<em>' . $input . '</em>';