Menu
Home
Recent Posts
Showing posts with label
highlight
.
Show all posts
Showing posts with label
highlight
.
Show all posts
PHP: Highlight difference between two strings
7:41 AM
0
Share
You can use the
PHP Inline-Diff package
. It suits your needs, and is quite customisable as well.
It's also licensed under the GPL, so Enjoy!
Read More
Older Posts
Home
Subscribe to:
Comments (Atom)
Development and programming answers
Search articles
Popular Posts
PHP: Curly braces strings usage
They're used to escape variable expressions. From Strings : Complex (curly) syntax This isn't called complex because the syntax i...
PHP: Create, edit and delete crontab jobs
Crontab usage: crontab [-u user] file crontab [-u user] [ -e | -l | -r ] (default operation is replace, per 1003....
PHP: Convert SVG image to PNG
$usmap = '/path/to/blank/us-map.svg' ; $im = new Imagick (); $svg = file_get_contents ( $usmap ); /*loop to color each stat...
PHP 5: When to use $self or $this
From http://www.phpbuilder.com/board/showthread.php?t=10354489 : Use $this to refer to the current object. Use self to refer to the cu...
PHP: Function eregi() is deprecated
eregi() is deprecated as of PHP 5.3, use preg_match() instead. Note that preg_match() is only case insensitive when you pass the i mo...