- functionhighlighter_text($text, $words)
- {
- $split_words =explode( " " , $words );
- foreach($split_words as $word)
- {
- $color = "#4285F4";
- $ text = preg_replace("|($word)|Ui" ,
- "$1" , $text );
- }
- return $text;
- }
复制代码
使用法:
- $string = "チョコレートが好きで、リンゴも好き";
- $words = "リンゴ";
- echo ハイライター_text($string ,$words);
- ?>
复制幣
|