Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used a word multiple times on my site and I want to replace this word with a text link in all my site.

<?php
function template_outputfilter_profanity_filter($output, &$smarty)
{
    $wordlist = "Sports|Travel";
    return preg_replace("/\b($wordlist)\b/ie", 'preg_replace("/./","*","\\1")', $output);
}
?> 

Extraction

********

How to Replace Word with text link?

<a href="http://www.example.com/">Sports</a> <a href="http://www.example.com/">Travel</a>

Instead of Replace Word with

********

Works, but I do not want to repeat the word 8 times

return preg_replace("/\b($wordlist)\b/ie", 'preg_replace("/./","<a href=\"http://www.example.com/\">Sports</a>","\\1")', $output);
share|improve this question
2  
What is your question? – Mathieu Imbert Jan 27 at 23:07
str_replace()? – Titanium Jan 27 at 23:21

closed as not a real question by brian d foy, cryptic ツ, bensiu, Sudarshan, brenjt Jan 28 at 5:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

<?php
function template_outputfilter_profanity_filter($output, &$smarty)
{
    $wordlist = array('/Sports/', '/Travel/');
    $link = '<a href="http://www.example.com/">';
    $close = '</a>';
    $replacement = array($link.'Sports'.$close, $link.'Travel'.$close);

    return preg_replace($wordlist, $replacement, $output);
}
?>

You mean something like that?

share|improve this answer
Yes, but this replaces all words in page source Event Meta tag, I do not want to replace the word in Meta tag – sokemk Jan 28 at 0:14
So you shouldn't include meta tags in $output variable. Just pass to the function string that you want to 'scan' and replace the words in it. – sobol6803 Jan 28 at 13:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.