News Feed
Jobs Feed
Sections




News Archive
Michael Nitschinger:
A Journey on Avoiding Nulls in PHP
February 20, 2013 @ 12:17:39

Michael Nitschinger has written up a post looking at avoiding nulls in your applications in favor of a better kind of value handling - the introduction of "Optional" handling.

While every developer has kind of accepted their existence, they are suddenly there when we'd desperately need them to not show up. How often did you writeif($obj === null) in your PHP code? Can't there be a better, more elegant and fault-tolerant solution to the problem?

His solution is to create a PHP version of this "Optional" functionality (via an abstract class) that allows some evaluation of the returned value from method calls on the object. Methods like "isPresent", "getOrElse", "of" and "fromNullable" make it easier to work with null values instead of just the triple-equals checking. He includes not only the code for the classes you'll need to implement it but examples of it in use - an "Optional" abstract class and two child classes, "Present" and "Absent".

0 comments voice your opinion now!
avoid null return value optional absent present evaluation tutorial


blog comments powered by Disqus

Similar Posts

Court Ewing's Blog: Create and Validate a Choice List in a Symfony 2 Form

NETTUTS.com: CodeIgniter From Scratch: Day 2

Joey Rivera's Blog: Using Zend_Paginator with Twitter API and Zend_Cache

Justin Carmony's Blog: Setting Up Nginx & PHP-FPM on Ubuntu 10.04

Brandon Savage's Blog: Making Zend_Navigation Useful


Community Events











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


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

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