Posts Tagged ‘fail’

Type Hinting in PHP

Saturday, September 5th, 2009

PHP 5 introduces Type Hinting. But it does so in the usual PHP way: It’s neither fish nor fowl. You’ll be exited at first when you discover the new feature. And then you’ll be disappointed. Because things do not work like you’d expect. Suppose you do something like this:

  1. <?php
  2.  
  3. function foo ( string $bar) {
  4. echo $bar;
  5. }
  6. foo ('Hello World!');
  7.  
  8. ?>

What happens, when you execute the above code? You will get a rather cryptic error message:

  1. Catchable fatal error: Argument 1 passed to foo() must be an instance of string, string given.

So the method expected a string as the first parameter and you passed a string to it, but PHP chose to throw up regardless. Great, isn’t it? Of course, the reason for this is right at the very bottom of the PHP documentation on Type Hinting. All the way down the page below a number of examples:

Type Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn’t supported.

Doh!

EU Parliament elections 2009

Wednesday, June 3rd, 2009
EU Parliament elections postal vote ballot and envelope

EU elections

The ballot doesn’t really fit into the envelope. It’s totally crumpled right now. Epic FAIL! Anyway, if you’re living in Europe, vote. Tomorrow, on Friday, on Saturday or on Sunday, depending on where you live. The parliament doesn’t have to say as much on EU policy as it should have, but it’s gaining influence. Some people say that European policy affects up to 80% of your local legislation right now. While I do not necessarily agree to such statements, it’s probably a good idea to vote anyway. That much for a public service announcement.