Düzenli ifadeler kullanarak bu sorunu çözmek için iyi bir yol olabilir, ama burada hızlı bir çözümdür olabilir:
function link_keywords($str, $keyword, $url) {
$keyword = preg_quote($keyword, '/');
$url = htmlspecialchars($url);
// Use split the string on all <a> tags, keeping the matched delimiters:
$split_str = preg_split('#(<a\s.*?</a>)#i', $str, -1, PREG_SPLIT_DELIM_CAPTURE);
// loop through the results and process the sections between <a> tags
$result = '';
foreach ($split_str as $sub_str) {
if (preg_match('#^<a\s.*?</a>$#i', $sub_str)) {
$result .= $sub_str;
} else {
// split on all remaining tags
$split_sub_str = preg_split('/(<.+?>)/', $sub_str, -1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($split_sub_str as $sub_sub_str) {
if (preg_match('/^<.+>$/', $sub_sub_str)) {
$result .= $sub_sub_str;
} else {
$result .= preg_replace('/'.$keyword.'/', '<a href="'.$url.'">$0</a>', $sub_sub_str);
}
}
}
}
return $result;
}
Genel bir fikir linkleri ve her şeyin içine dize bölmek için. Sonra düz metin içine etiketleri ve düz metin ve insert bağlantıları içine link etiketinin dışında her şeyi bölünmüş. O [p class = "[a href =" url "] keyword [/ a]"] genişletilmiş olmaktan [p class = "keyword"] önleyecektir.
Yine, normal ifadeler içermeyen basit bir çözüm bulmak için çalışacağını söyledi.