php – 围绕某些单词包装标签

我有一系列的单词,像这样:

array("the", "over", "hen");

我也有这样的字符串:

"The quick brown fox jumps over the lazy hen"

我想在数组中所有出现的单词周围包装一个标签(强),但保持大小写正确.

例如,使用前一个字符串,它最终会像

<strong>The</strong> quick brown fox jumps <strong>over</strong the lazy <strong>hen</strong>

但是,如果我有这句话:

"Hen #2 and ThE oveR reactive cow"

看起来像这样:

<strong>Hen</strong> #2 and <strong>ThE</strong> <strong>oveR</strong> reactive cow

我猜这个答案会使用正则表达式,但我不是很擅长……

解决方法:

试试以下:

$string = 'Then quick brown fox jumps over the lazy hen';
$keys = array('the', 'over', 'hen');

$patterns = array();
foreach($keys as $key)
    $patterns[] = '/\b('.$key.')\b/i';

echo preg_replace($patterns, '<strong>$0</strong>', $string);

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...