News Feed
Jobs Feed
Sections

Recent Jobs

News Archive
feed this:

PHP in Action:
Type hints are more useful for scalars than objects
September 11, 2008 @ 10:08:33

On the PHP in Action blog, there's a new post looking at a recent library that was posted to support type hinting on scalars. They agree with his choice of subjects, noting that they see type hinting as much more useful on scalars than on objects.

I admit that these judgments are hard to make. I could be wrong, more or less. Type hints are probably useful when code becomes stable enough and at the boundaries between modules. But I still tend to avoid using them until I get an actual bug that might have been prevented by a type hint. Their usefulness is and has to be an empirical question. The purpose of using them has to be catching errors earlier, so if they don't have that effect, there's no point.

He lists three reasons why he had given up on type hinting before, one being the limited usefulness when it came to objects. Applying it to scalars is a different matter, though, and can prevent improper passing of array/scalars when the other is needed.

0 comments voice your opinion now!
type hinting scalar object array string class library



Derick Rethans' Blog:
Scalar Type Hinting and DB Design Slides
June 17, 2006 @ 18:52:04

Derick Rethans has two blog posts for us today, the first details a patch he created which allows us to use type hints for all variable types in PHP.

Derick himself admits that its probably not the best approach:

The patch is most likely not the best way of implementing this either, and I am also not sure if this patch should be applied to PHP's CVS at all.

He offers the following as an example of how this would be used:

function foo2( integer $i, float $f, bool $b ) { }
foo2( 'string', 42, 49.9 );

The example above should show:

Catchable fatal error: Argument 1 passed to foo2() must be of type integer, string given, called in /tmp/test.php on line 16 and defined in /tmp/test.php on line 12

Derick also posted his Database Design Slides from his talk earlier this year at php|architects php|tek

0 comments voice your opinion now!
database design scalar typehints database design scalar typehints



Community Events









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


developer book code release PHP5 security releases job conference zendframework framework PEAR cakephp package zend mysql application ajax example database

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