News Feed
Jobs Feed
Sections




News Archive
David Sklar's Blog:
Fast Multiple String Replacement in PHP
October 01, 2010 @ 10:09:40

David Sklar has a new post to his blog today sharing an extension he's created to make replacing strings in PHP a much faster task - Boxwood.

A straightforward way to do [string replacement] in PHP is to pass an array of words to look for and their replacements to a function like str_replace() or str_ireplace(). Or, similarly, use a regular expression that gloms the search terms together (and potentially checks word boundaries.) There are assorted WordPress plugins that work like this. The problem with this approach is that it's really slow. Especially if you have a lot of words you're looking for. The amount of time it takes to do the search and replace grows in proportion to the number of words you're looking for. This is particularly unfortunate because usually, none of the words are ever found!

With the Boxwood extension, the word list can be as long as needed because it uses an ordered tree structure (trie) to parse the entire tree only once so there's much less overhead.

0 comments voice your opinion now!
multiple string replacement extension boxwood


blog comments powered by Disqus

Similar Posts

SitePoint.com: Create Dynamic Images with ImageMagick

Josh Adell: Serializing Data Like a PHP Session

DevShed: Performing Basic Tasks with MySQL 4.1 and Above, using mysqli with PHP 5

Christopher Jones' Blog: Statement caching bug fix to improve performance of OCI8 extension

Sandro Groganz's Blog: Useful Extensions for WordPress and MediaWiki


Community Events











Don't see your event here?
Let us know!


rest conference database series development community zendframework2 release introduction interview podcast phpunit functional usergroup testing symfony opinion language framework symfony2

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework