突出显示给定字符串中的多个关键字
我需要单独突出显示字符串中的每个单词,即使该字符串只有一个单词。
$keyword = '应该加粗';
$string = '这应该加粗';
预期结果:
“这应该加粗。” 这是类似Google 的亮点。
I need to highlight each word separately from a string, even if the string is only one word.
$keyword = 'should be bolded';
$string = 'This shouldbebolded';
Expected result:
"This shouldbebolded."
This is the Google like highlight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个简单的功能就可以满足您的要求。您可以将单词分成一个数组来单独搜索所有单词。
只需使用
explode()
函数将单词分解为数组并将其传递给下面的函数。A simple function will suffice your requirement. You can break your words into an array to search for all of them separately.
Simply use
explode()
function to break your words into array and pass it to the function below.您可以使用以下方法执行此操作
爆炸
,foreach
和str_replace
:结果将是:
You can do this using
explode
,foreach
andstr_replace
:And the result would be: