2

PHP 5.3 released

Posted July 1st, 2009 in web and tagged , , by Michael

PHP 5.3 has just been released!

I’m especially impressed by the namespaces and the great, JavaScript-like implementation of Closures – no new syntax to learn here. And the developers also show humor regarding the newly implemented goto support…

Overall a great release with long-awaited features and cleanups, let’s hope the providers update their installations quickly!

Read the full release notes.

2 Responses so far.

  1. citizen428 says:

    So PHP now finally gets namespaces (and thus better encapsulation capabilities) and lambdas. That's 2 steps closer to finally becoming a decent programming language.One question though: Why would you want to use the new shorthand for the ternary operator? Or does PHP not support if/unless statement modifiers (no trolling, I really don't know). What I mean is this:# ternary shorthandcondition ?: something#instead ofsomething if condition

  2. Michael Baierl says:

    Nope, perl-stuff like$a = 'x' if(…);$a = 'x' unless(…);is not supported….if(…) $a = 'x'; works fine ;)

Leave a Reply