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

dmsAutoComplete v1.1 - ChangeLog

dmsAutoComplete v1.1 - ChangeLog

  • October 2, 2006

Recently I published an updated version of my auto-complete (Google suggest) script compatible with IE and FireFox and based on PHP/AJAX.

After publishing version 1.0, I had some feedback from people who downloaded an tested it, so now I decided to correct some of the bugs that were found, and make a few improvements also. So now I’m going to publish version 1.1, check out some of the changes I made.

Read More
AJAXOnline.com.br

AJAXOnline.com.br

  • September 12, 2006

Na semana passada a internet brasileira passou a contar com mais um portal, o AjaxOnline.

Read More
MSN: Amigo ou Inimigo?

MSN: Amigo ou Inimigo?

  • July 14, 2006

Pesquisa rápida: Quem nunca passou pela experiência de ter o MSN bloqueado na empresa?

Read More