PHP 字符串关键字匹配
发布网友
发布时间:2022-04-21 09:55
我来回答
共3个回答
热心网友
时间:2022-04-06 02:37
只要内容中有关键字就替换成超链接
function TextHandle($source, Array $texts) {
/**
* @source String 需要处理的源字符串
* @texts Array 需要替换的所有关键字
*
*/
foreach ($texts AS $text) {
$source = str_replace($text, "<a href=''>" . $text . "</a>", $source);
}
return $source;
}
$source = "你好,我是一个帅哥";
echo TextHandle($source, ['你好', '帅哥']); // 将 [你好][帅哥] 替换掉.
热心网友
时间:2022-04-06 03:55
$string = '你好 你还哦就是等各环节的客户';
$str = '<a href=".com">你好</a>';
$new_str=str_replace('你好',$str,$string);
热心网友
时间:2022-04-06 05:30
用substr截取