News Feed
Jobs Feed
Sections




News Archive
Gonzalo Ayuso's Blog:
Using Monkey Patching to store files in CouchDb using the standard filesystem
September 02, 2010 @ 14:10:12

Gonzalo Ayuso takes his "CouchDb as a filesystem" approach one step further (see the previous post about it here) with this new post talking about monkey patching to store files into the CouchDb server using the normal PHP file handling functions.

Since PHP5.3 a new design pattern is available for us: Monkey Patching. With this pattern we can override PHP's core functions with a home-made functions in a different namespace (another example here). That's means if I have fopen function in the above example, PHP uses the filesystem function "fopen" but if we set a namespace in our example, PHP will search first the function within the current namespace.

By defining the new interface inside of a namespace (with functions to override the default PHP file handlers) you can have the rest of the code call the same functions (fopen, fread, etc) but they'll do different things. In this case it handles them as push and pull to the CouchDb instead of the normal filesystem. You can grab the source for this example here.

0 comments voice your opinion now!
monkeypatching namespace filesystem couchdb tutorial


blog comments powered by Disqus

Similar Posts

Matthew Weir O'Phinney's Blog: Login and Authentication with Zend Framework

Fabien Potencier's Blog: Create your own framework... on top of the Symfony2 Components (part 2)

Jason Gilmore's Blog: How I Learned to Stop Worrying and Love Zend_Form

DevShed: Using Abstract Factory Classes in PHP 5 to Work with Online Forms

Zend Developer Zone: Zend Framework Articles and Tutorials


Community Events











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


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

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