php-src/README.namespaces

175 lines
5.9 KiB
Plaintext
Raw Normal View History

2007-07-30 16:20:46 +00:00
Design
======
Main assumption of the model is that the problem that we are to solve is the
problem of the very long class names in PHP libraries. We would not attempt
to take autoloader's job or create packaging model - only make names
2007-08-17 17:12:28 +00:00
manageable.
2007-08-17 17:12:28 +00:00
Namespaces are defined the following way:
2007-08-17 17:12:28 +00:00
Zend/DB/Connection.php:
<?php
2009-04-03 14:36:50 +00:00
namespace Zend\DB;
class Connection {
}
function connect() {
}
?>
2007-08-17 17:12:28 +00:00
Namespace definition does the following:
All class and function names inside are automatically prefixed with
namespace name. Inside namespace, local name always takes precedence over
2007-08-17 21:53:58 +00:00
global name. Several files may be using the same namespace.
The namespace declaration statement must be the very first statement in
2007-08-17 21:53:58 +00:00
the file. The only exception is "declare" statement that can be used before.
2007-08-17 21:53:58 +00:00
Every class and function in a namespace can be referred to by the full name
2009-04-03 14:36:50 +00:00
- e.g. Zend\DB\Connection or Zend\DB\connect - at any time.
<?php
require 'Zend/Db/Connection.php';
2009-04-03 14:36:50 +00:00
$x = new Zend\DB\Connection;
Zend\DB\connect();
?>
2007-08-17 17:12:28 +00:00
Namespace or class name can be imported:
2007-08-17 17:12:28 +00:00
<?php
require 'Zend/Db/Connection.php';
2009-04-03 14:36:50 +00:00
use Zend\DB;
use Zend\DB\Connection as DbConnection;
2007-08-17 21:53:58 +00:00
2009-04-03 14:36:50 +00:00
$x = new Zend\DB\Connection();
$y = new DB\connection();
$z = new DbConnection();
2009-04-03 14:36:50 +00:00
DB\connect();
?>
2007-11-07 09:14:06 +00:00
The use statement only defines name aliasing. It may create name alias for
2009-04-03 14:36:50 +00:00
namespace or class. The simple form of statement "use A\B\C\D;" is
equivalent to "use A\B\C\D as D;". The use statement can be used at any
2007-08-17 21:53:58 +00:00
time in the global scope (not inside function/class) and takes effect from
the point of definition down to the end of file. It is recommended however to
2007-11-07 09:14:06 +00:00
place the use statements at the beginning of the file. The use statements have
effect only on the file where they appear.
2009-04-03 14:36:50 +00:00
The special "empty" namespace (\ prefix) is useful as explicit global
namespace qualification. All class and function names started from \
2007-08-17 21:53:58 +00:00
interpreted as global.
<?php
2009-04-03 14:36:50 +00:00
namespace A\B\C;
2009-04-03 14:36:50 +00:00
$con = \mysql_connect(...);
?>
2007-08-17 21:53:58 +00:00
A special constant __NAMESPACE__ contains the name of the current namespace.
It can be used to construct fully-qualified names to pass them as callbacks.
<?php
2009-04-03 14:36:50 +00:00
namespace A\B\C;
function foo() {
}
2009-04-03 14:36:50 +00:00
set_error_handler(__NAMESPACE__ . "\foo");
?>
2007-08-17 21:53:58 +00:00
In global namespace __NAMESPACE__ constant has the value of empty string.
2007-08-17 21:53:58 +00:00
Names inside namespace are resolved according to the following rules:
1) all qualified names are translated during compilation according to
2009-04-03 14:36:50 +00:00
current import rules. So if we have "use A\B\C" and then "C\D\e()"
it is translated to "A\B\C\D\e()".
2) unqualified class names translated during compilation according to
2009-04-03 14:36:50 +00:00
current import rules. So if we have "use A\B\C" and then "new C()" it
is translated to "new A\B\C()".
2007-08-17 21:53:58 +00:00
3) inside namespace, calls to unqualified functions that are defined in
current namespace (and are known at the time the call is parsed) are
interpreted as calls to these namespace functions.
4) inside namespace, calls to unqualified functions that are not defined
in current namespace are resolved at run-time. The call to function foo()
2009-04-03 14:36:50 +00:00
inside namespace (A\B) first tries to find and call function from current
namespace A\B\foo() and if it doesn't exist PHP tries to call internal
2007-08-17 21:53:58 +00:00
function foo(). Note that using foo() inside namespace you can call only
2009-04-03 14:36:50 +00:00
internal PHP functions, however using \foo() you are able to call any
2007-08-17 21:53:58 +00:00
function from the global namespace.
5) unqualified class names are resolved at run-time. E.q. "new Exception()"
2007-08-17 21:53:58 +00:00
first tries to use (and autoload) class from current namespace and in case
of failure uses internal PHP class. Note that using "new A" in namespace
you can only create class from this namespace or internal PHP class, however
2009-04-03 14:36:50 +00:00
using "new \A" you are able to create any class from the global namespace.
6) Calls to qualified functions are resolved at run-time. Call to
2009-04-03 14:36:50 +00:00
A\B\foo() first tries to call function foo() from namespace A\B, then
it tries to find class A\B (__autoload() it if necessary) and call its
2007-08-17 17:12:28 +00:00
static method foo()
7) qualified class names are interpreted as class from corresponding
2009-04-03 14:36:50 +00:00
namespace. So "new A\B\C()" refers to class C from namespace A\B.
2007-07-30 16:20:46 +00:00
2007-08-17 17:12:28 +00:00
Examples
--------
<?php
namespace A;
foo(); // first tries to call "foo" defined in namespace "A"
// then calls internal function "foo"
2009-04-03 14:36:50 +00:00
\foo(); // calls function "foo" defined in global scope
2007-08-17 17:12:28 +00:00
?>
<?php
namespace A;
new B(); // first tries to create object of class "B" defined in namespace "A"
// then creates object of internal class "B"
2009-04-03 14:36:50 +00:00
new \B(); // creates object of class "B" defined in global scope
2007-08-17 17:12:28 +00:00
?>
<?php
2007-08-17 21:53:58 +00:00
namespace A;
2009-04-03 14:36:50 +00:00
new A(); // first tries to create object of class "A" from namespace "A" (A\A)
2007-08-17 17:12:28 +00:00
// then creates object of internal class "A"
?>
<?php
namespace A;
2009-04-03 14:36:50 +00:00
B\foo(); // first tries to call function "foo" from namespace "A\B"
2007-08-17 17:12:28 +00:00
// then calls method "foo" of internal class "B"
2009-04-03 14:36:50 +00:00
\B\foo(); // first tries to call function "foo" from namespace "B"
2007-08-17 17:12:28 +00:00
// then calls method "foo" of class "B" from global scope
?>
The worst case if class name conflicts with namespace name
<?php
namespace A;
2009-04-03 14:36:50 +00:00
A\foo(); // first tries to call function "foo" from namespace "A\A"
2007-08-17 17:12:28 +00:00
// then tries to call method "foo" of class "A" from namespace "A"
// then tries to call function "foo" from namespace "A"
// then calls method "foo" of internal class "A"
2009-04-03 14:36:50 +00:00
\A\foo(); // first tries to call function "foo" from namespace "A"
2007-08-17 17:12:28 +00:00
// then calls method "foo" of class "A" from global scope
?>
2007-07-30 16:20:46 +00:00
TODO
====
2007-08-17 17:12:28 +00:00
* Support for namespace constants?
* performance problems
- calls to internal functions in namespaces are slower, because PHP first
2007-08-17 21:53:58 +00:00
looks for such function in current namespace
2007-08-17 17:12:28 +00:00
- calls to static methods are slower, because PHP first tries to look
for corresponding function in namespace
2007-08-17 21:53:58 +00:00
* Extend the Reflection API?
* Add ReflectionNamespace class
2007-07-30 16:20:46 +00:00
+ getName()
+ getClasses()
+ getFunctions()
+ getFiles()
2007-08-17 17:12:28 +00:00
* Add getNamespace() methods to ReflectionClass and ReflectionFunction
2007-08-17 21:53:58 +00:00
* Rename namespaces to packages?