突出显示给定字符串中的多个关键字

发布于 2025-01-07 06:09:07 字数 187 浏览 0 评论 0原文

我需要单独突出显示字符串中的每个单词,即使该字符串只有一个单词。

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

违心° 2025-01-14 06:09:07

一个简单的功能就可以满足您的要求。您可以将单词分成一个数组来单独搜索所有单词。

只需使用 explode() 函数将单词分解为数组并将其传递给下面的函数。

function highlightWords($string, $words)
 {
    foreach ( $words as $word )
    {
        $string = str_ireplace($word, '<span class="highlight">'.$word.'</span>', $string);
    }
    return $string;
 }

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.

function highlightWords($string, $words)
 {
    foreach ( $words as $word )
    {
        $string = str_ireplace($word, '<span class="highlight">'.$word.'</span>', $string);
    }
    return $string;
 }
他是夢罘是命 2025-01-14 06:09:07

您可以使用以下方法执行此操作
爆炸,
foreach
str_replace

<?php
# Keywords
$keywords_str = 'tv nice';

# String
$string = 'My tv is nice';

# Operation result(to not modify $string)
$result = $string;

# Split $keywords by spaces into array of single keywords
$keywords = explode(' ', $keywords_str);

# Loop keywords array
foreach($keywords as $keyword)
{
    # Replace every keyword occurence to make it bold
    $result = str_replace($keyword, "<b>$keyword</b>", $result);
}               

echo $result;

?>

结果将是:

我的电视不错

You can do this using
explode,
foreach and
str_replace:

<?php
# Keywords
$keywords_str = 'tv nice';

# String
$string = 'My tv is nice';

# Operation result(to not modify $string)
$result = $string;

# Split $keywords by spaces into array of single keywords
$keywords = explode(' ', $keywords_str);

# Loop keywords array
foreach($keywords as $keyword)
{
    # Replace every keyword occurence to make it bold
    $result = str_replace($keyword, "<b>$keyword</b>", $result);
}               

echo $result;

?>

And the result would be:

My tv is nice

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文