I've heard the latest PHP has support for namespaces. I know variables defined in the global scope have no namespace, so how does one make a variable in a different namespace?
Is it just a way of categorising variables/functions?
|
5
|
I've heard the latest PHP has support for namespaces. I know variables defined in the global scope have no namespace, so how does one make a variable in a different namespace? Is it just a way of categorising variables/functions?
|
|||
|
|
|
|
Namespaces are a programming language mechanism for organizing variables, functions and classes. PHP 5.3 adds support for namespaces, which I'll demonstrate in the following example: Say you would like to combine two projects which use the same class name User, but have different implementations of each:
For versions of PHP less than 5.3, you would have to go through the trouble of changing the class name all of the instances of the class User used by one of the projects to prevent a naming collision:
For versions of PHP greater than or equal to 5.3, you can use namespaces when creating a project, by adding a namespace declaration:
For more information: |
||||||||
|
|
|
Namespaces are often used with libraries, the ability to reference the library code with 1 single namespace helps to not clobber up others that are already being used. |
||
|
|
|
|
A namespace allows you to organize code and gives you a way to encapsulate your items. You can visualize namespaces as a file system uses directories to group related files. Basically namespaces provide you a way in which to group related classes, functions and constants. They also help to avoid name collisions between your PHP classes/functions/constants, and improve the code readability, avoiding extra-long class names. Example namespace declaration:
|
|||
|
|
|
Namespaces solve the problem of naming collisions when importing classes and functions from libraries. Without namespaces, if you include two libraries which happen to define a function/class with the same name (ie, two libraries that both include a class called 'user'), it will fail. With no namespace support in PHP, most libraries have taken to prefixing their function/class names with something that is likely to be unique, in an attempt to avoid name collisions. The trouble is, this creates longer function or class names. The example given here is of the exception class:
You can import from a long namespace into your own local scope as an alias using the 'AS' keyword - a name you choose. Thus, you can still have a short class name of your choice in your local scope. The following applies an 'alias' called DbConnection to Zend::DB::Connection.
|
|||
|
|