Jump to content

str_replace


rockinaway

Recommended Posts

FOr my search I am highlighting matches.. and I have one problem.

 

I am using:

 

str_replace($_GET['keywords'], 'MY HIGHLIGHT CODE', $search results)

 

However with this is the search term was 'test', then it only highlights 'test', and not similar words like 'Test' etc

 

Is there anyway this can be solved?

Link to comment
https://forums.phpfreaks.com/topic/37944-str_replace/
Share on other sites

SO this doesn't work:

 

<?php

if(isset($_GET['keyword']))
{
    $keyword = $_GET['keyword'];

    $txt = 'Hello world how are you today?';

    $txt = eregi_replace('(' . $keyword. ')', "<b style=\"color: red;\">\\0</b>", $txt);

    echo $txt;
}

?>
<form action="" method="get">
Keyworld: <input type="text" name="keyword" value="hello"><br />
<input type="submit" value="Highlight Keyword">
</form>

 

When you use ereg you are using regular expressions. So you're best of reading up on the basics of regular expressions in or der to understand. Also you're best of readin up on how the ereg function works too, before I linked you to the eregi function which doesnt explain how ereg works.

Link to comment
https://forums.phpfreaks.com/topic/37944-str_replace/#findComment-182955
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.