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

Zend Developer Zone: An Introduction to the Art of Unit Testing in PHP

PHPBuiilder.com: Using Get and Post Methodology in AJAX Applications

Stefan Mischook's Blog: Object Oriented PHP Tutorial Updated - Steps 18 - 22

DevShed: Working with Strings and the Composite Pattern in PHP 5

Zend: Extension Writing Tutorials - Resources (Part 3)


Community Events











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


application podcast release code zendframework2 functional composer language introduction database development framework interview opinion phpunit series community example api testing

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