News Feed
Jobs Feed
Sections




News Archive
James Fuller's Blog:
Enforcing contracts in your PHP functions and methods
March 23, 2012 @ 08:37:11

James Fuller has a new post to his blog today about a way you can enforce contracts in your PHP using a combination of type hinting and value checking.

Design by contract is an important concept for controlling what type of input your methods or functions can receive. One of the most dangerous features of PHP is that functions will still execute even when they are missing required arguments, by emitting a warning instead of an error. In this post, I am going to walk through some of the solutions available to deal with this problem.

He shows how to alter a basic function to first use type hinting to catch when a variable is the wrong type (in this case checking for an array and stdClass) which causes a Fatal error and makes the function not execute. He includes sample code for the type/value checking option and also includes a suggestion of using PHPUnit's assertions as another option.

Finally, he introduces the ContractLib tool (from Stuart Herbert) that makes use of closures to enforce checks - his example checks to see if something is a string and that it's not empty.

0 comments voice your opinion now!
enforce contract function exception typehint contractlib


blog comments powered by Disqus

Similar Posts

Tim\'s Blog: Rethinking extract() By Convention

Sebastian Bergmann's Blog: Wanted: PHP Implementation of Unified Diff

Phil Thompson's Blog: 7 PHP functions that saved my life

Job Posting: Staffing Technologies, LLC (Recruiter) Seeks Contract PHP Developer (Redmond, WA)

DevShed: Intercepting Customized Exceptions in PHP 5


Community Events









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


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

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