Skip to page content or Skip to Accesskey List.

Work

Main Page Content

Php Text Marker An Alternative

Rated 3.92 (Ratings: 2)

Want more?

 
Picture of Markavian

Markis Brachel

Member info

User since: 08 Jul 2002

Articles written: 1

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.

The search criteria used is a variable called $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.

e.g. URL highlight.php?searchItem=oranges

If you've got PHP, go on.. try it!

Also try changing the search item from oranges, to apples, to peaches. etc. and see how it highlights the different words.

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.

This author likes building websites, playing around with images, and making things that do something.
Style and functionality are what matter. Make it do something, make it look good, and you're on to a winner.
- Markavian

The access keys for this page are: ALT (Control on a Mac) plus:

evolt.org Evolt.org is an all-volunteer resource for web developers made up of a discussion list, a browser archive, and member-submitted articles. This article is the property of its author, please do not redistribute or use elsewhere without checking with the author.