News Feed
Jobs Feed
Sections




News Archive
Jeremy Cook's Blog:
Recursive Closures in PHP 5.3
August 13, 2010 @ 13:07:59

In this recent post from Jeremy Cook he take a look at an interesting use of closures in PHP - using them recursively to strip slashes off a string.

One thing all of my projects have in them is code to remove the quotes added so I can handle appropriate escaping myself. This [example from the PHP manual] works perfectly but it does end up creating a function in the global namespace which is only called once. A perfect job for a closure.

He includes an example of how to do it with a normal, globally-defined function and how to handle it with a closure (that calls itself via an array_map) - a closure contained inside of itself with the string variable passed in by reference. Then, when it's done stripping out slashes, the closure is dropped and nothing new is added to the global namespace.

0 comments voice your opinion now!
closure recursive stripslashes tutorial


blog comments powered by Disqus

Similar Posts

PHPit.net: PHP5 Class Basics, Part 1

Zend Developer Zone: Zend_Acl / Zend_Auth example scenario

NETTUTS.com: Getting Started with Magento Ecommerce!

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

DevShed: Using Yahoo! Web Services with PHP 5


Community Events









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


api release testing phpunit database opinion tool introduction community object podcast unittest language interview example framework zendframework2 composer code development

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