Main Page Content
Php Text Marker An Alternative
Text Highlighting
Websites like google.com have the ability to highlight text on any page based on a search item.
Previous experiments by Ashok Hariharan (Junglee) in his article DHTML Text Marker An Experiment. were brought to my attention when I found a way of doing just this, using PHP.
Read on to learn how to highlight any text on a page using a simple PHP script.
The Function
The following code has come straight off the php.net online manual. The ob_start() function. Basically what it does is buffer any/all page output until you say ob_end_flush(); .. and then it outputs the whole page.In this example a function called callback has been created, which searches through the entire output, and replaces the word 'apples' with 'oranges'. The 'callback' function is called when ob_end_flush() is initialised. e.g. ob_end_flush("callback");.
The code is like so:
It's like comparing apples to oranges.
All the output is buffered. Each time an output is detected, it is run through the callback function, which replaces all occurances of 'apples', with 'oranges'.
At the end of the script, ob_end_flush(); outputs the filtered buffer contents.
Creating Useful Code
We want to search through a document, and highlight a specified search item.
We already have a search and replace function above. To highlight a word we simply surround the text with a <span class="highlight"> tag.
Firstly we need to set up the CSS class:
.highlight {
- background: #44AA44
color: white;
Next the code is altered to search for a specified search criteria, and when found. surround this text with the <span class="highlight"> tag.
$searchItem
.For the 'callback' function to work
$searchItem
must be set.NB: The line:
global $searchItem;
- . If you don't know, please see PHP variable scope for details.The altered code follows:
It's like comparing bannanas to oranges to apples to peaches.
Operator's Guide
Now if you send $searchItem=oranges to the script, the word 'oranges' will be highlighted.
highlight.php?searchItem=oranges
If you've got PHP, go on.. try it!
Extending the script
Thats the basic principle.. however, you may like to do a improved matching filter, e.g. oranges aren't the same as Oranges.. and maybe the user would prefer orange and Orange and Oranges to be highlighted.
Also, theres a small snag, if someone searches for 'p', it messes up the code a tad.
Comments
Please try out the script, and comment on any successes / added features below. If you can think of any faster / better ways of doing this search / replace then please post.
Reference
And for your reference:
Previous experiments by Ashok Hariharan (Junglee) in his article DHTML Text Marker An Experiment. - A semi inspiration to write this article.
www.php.net - Still the best source for PHP documentation.
PHP Function ob_start() - The all important 'buffer output' command.
PHP variable scope - A useful page about variable scope, variables inside functions, and things which aren't obvious to the newer programmer.