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

De volta ao Velho Continente

De volta ao Velho Continente

  • November 8, 2011

“Your life begins where your comfort zone ends” (@elizabethN’s mother )

Read More
PHP e AJAX: do Request ao Framework

PHP e AJAX: do Request ao Framework

  • December 2, 2007

Plaestra atualizada para o PHP Conference 2007

Read More
ZendCon '08 - Day One

ZendCon '08 - Day One

  • September 16, 2008

So its end of Day One here at ZendCon, let’s do a quick re-cap.

Read More