The road to PHP 5.3: Namespaces

  • PHP
  • August 12, 2008

We have all been looking forward to PHP6 and the big changes that were proposed for it, but along the way the PHP Core dudes made a great decision and split the PHP6 release in two. Most of the new features expected for PHP6 will be implemented in a 5.3 release, leaving unicode for the PHP6 release. So let’s take a quick look at what’s coming along in PHP 5.3.

Roadmap

On the last few weeks great steps have been taken, and a cool timeline is now up. The release went into feature freeze on the 24th of july, and into alpha1 last week. After that the next 2-3 weeks will see loads of beta and RC releases and finally from mid September to October we will have the final stable release \o/

Features

On this post I’ll talk about Namespaces, and cover other features in future posts.

namespaces

This is by far one of the most expected features that will be included in this release. Like Java or other languages, this will allow developers to group classes and other stuff in namespaces, like below:

<?php /\*\* classes/my/foo/MyClass.php \*/

namespace my::foo;

class MyClass {}

// You can define functions and constants in the namespace too. function myFunc() { } const MY\_CONST = ‘foo’;

?>

So that way you can use this in many forms, like:

<?php /\*\* test.php \*/ include(’classes/my/foo/MyClass.php’);

// You can always access anything ∈an object with fully qualified name. $foo = new my::foo::MyClass();

// You can use the use statement to import a namespace. use my::foo; // After the above statement you can reffer for the my::foo namespace with foo. $foo = new foo::MyClass();

// You can import only one class. use my::foo::MyClass; $foo = new MyClass;

// You can create aliases. use my::foo as MyFoo; use my::foo::MyClass as MyFooClass; $foo = new MyFoo::MyClass(); $foo = new MyFooClass();

// Note, that the following two statements are equivalent: use my::foo; use my::foo as foo;

// You can access functions and constants in the same way: my::foo::myFunc(); myFoo::myFunc(); my::foo::MY\_CONST; myFoo::MY\_CONST;

?>

You can also use “empty” namespaces, so using just (::), like ::MyClass, will ignore current rules and call a globally independent class.

You can read more details here: http://blog.felho.hu/whats-new-in-php-53-part-1-namespaces.html

Next up… Late Static Binding

comments powered by Disqus

Related Posts

php|tek'09: Preparativos

php|tek'09: Preparativos

  • May 15, 2009

Este ano estarei presente na php|tek , conferencia de PHP muito famosa que ocorre em Chicago nos Estados Unidos.

Read More
Palestra na PHPConf 2008

Palestra na PHPConf 2008

  • November 17, 2008

A convite da iMasters estarei presente novamente este ano na PHPConference 2008 que acontecerá nos dias 27, 28 e 29 de novembro.

Read More
PHP Conference Brasil 09 - T minus 1+1/2 Day

PHP Conference Brasil 09 - T minus 1+1/2 Day

  • November 25, 2009

So one and a half days before the conference i finally got around to setting up for a video blog about the conference, stealing the idea from Cal Evans and Eli White, let’s see how it goes!

Read More