You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Felipe Pena af43d306c0 - Added 'p' type specifier 15 years ago
TSRM Fix CS 15 years ago
Zend - Added indirect method call through array variable (FR Bug #47160) 15 years ago
build Get rid of autoconf warnings 15 years ago
ext Update tests to match Felipe's null byte arg parsing change 15 years ago
main - Added new parameter parsing option (p - for valid path (string without null byte in the middle)) 15 years ago
netware sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php 16 years ago
pear Removed safe_mode 16 years ago
sapi - Added new parameter parsing option (p - for valid path (string without null byte in the middle)) 15 years ago
scripts Drop support for autoconf < 2.60 in trunk and the 15 years ago
tests MFH: Fixes for broken tests. 15 years ago
win32 - initial import, will add all libs later 15 years ago
.gdbinit - Added a function to print all CVs from the local scope. 17 years ago
CODING_STANDARDS Multi-branch test commit to see if email notifications are working 17 years ago
CREDITS Let's pretend this is up-to-date now 24 years ago
EXTENSIONS Update EXTENSIONS file 16 years ago
INSTALL Regenerate from the doc sources 15 years ago
LICENSE Update copyright year for the license 15 years ago
Makefile.frag fix gcov build 18 years ago
Makefile.gcov - Fixed bug #52019 (make lcov doesn't support TESTS variable anymore) 16 years ago
Makefile.global - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and one SAPI module the same time) 15 years ago
NEWS - Added indirect method call through array variable (FR Bug #47160) 15 years ago
README.EXTENSIONS * zend_module_entry change: apino, debug and zts are moved first, 24 years ago
README.EXT_SKEL update the docs 18 years ago
README.MAILINGLIST_RULES - mention rfc 1855 18 years ago
README.NEW-OUTPUT-API fix protos, and unintential double-patched content 16 years ago
README.PARAMETER_PARSING_API - Added 'p' type specifier 15 years ago
README.PHP4-TO-PHP5-THIN-CHANGES new incompatibilities. maybe someone from the doc group will update the 22 years ago
README.REDIST.BINS -add licenses info for bundled libs, codes merged from other projects, etc., information for binary distributions (windows, linux, etc.) 17 years ago
README.RELEASE_PROCESS Updated qa-release.php notes as per the new qa-release.php syntax 15 years ago
README.SELF-CONTAINED-EXTENSIONS Improve the wording in this paragraph. 23 years ago
README.STREAMS Added notes about locking functions. 23 years ago
README.SUBMITTING_PATCH Restructure into PHP/PECL/PEAR component areas (at the expense of duplication) 16 years ago
README.SVN-RULES MFH: - cvs->svn 17 years ago
README.TESTING clarification of wwwhether 'make test' needs the PHP xecutable to be set 17 years ago
README.TESTING2 Fixed bug#46445 (run-tests2.php is missing or README.TESTING2 is unneeded) 17 years ago
README.UNIX-BUILD-SYSTEM Update documentation for PHP 5. 23 years ago
README.WIN32-BUILD-SYSTEM - if they are outdated/wrong, no need to confuse the users 16 years ago
README.Zeus - Change from PHP5 -> PHP 5 22 years ago
README.input_filter Removed register_globals 16 years ago
README.namespaces - Changed namespace separator 17 years ago
UPGRADING Added fabled hex2bin() function 15 years ago
UPGRADING.INTERNALS - Added section for build system changes in UPGRADING.INTERNALS 15 years ago
acinclude.m4 Revert part of the fix for #53339 15 years ago
buildconf - Removed unused parts 17 years ago
buildconf.bat Check if configure script was copied, and output an error if it wasn't 17 years ago
config.guess - Upgraded bundled libtool to 1.5.26 16 years ago
config.sub - Upgraded bundled libtool to 1.5.26 16 years ago
configure.in Get rid of autoconf warnings 15 years ago
footer consistent with the used style 23 years ago
genfiles - Give Marcus good old warm and fuzzy feeling.. :) 18 years ago
header 2011 15 years ago
ltmain.sh - Upgraded bundled libtool to 1.5.26 16 years ago
makedist CVS->SVN 17 years ago
makerpm - Change from PHP5 -> PHP 5 22 years ago
php.gif fix logo (proper spacing between the letters) 20 years ago
php.ini-development Fix common typos in the source code (Reported in Bug #54065) 15 years ago
php.ini-production Fix common typos in the source code (Reported in Bug #54065) 15 years ago
php5.spec.in - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5 22 years ago
run-tests.php - Possible fix for Bug #54108 (valgrind can not be found if located outside of system's default PATH) 15 years ago
server-tests-config.php - Fix filename 20 years ago
server-tests.php sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php 16 years ago
snapshot Integration of -ng changes. Changes: 26 years ago
stamp-h.in # Fix ColorResolve bogosity 26 years ago
stub.c Add newline. Recent GCC snapshots segfault, if the input file is completely 25 years ago
svnclean.bat - rename to svn 17 years ago
vcsclean dropped some more mime types, svnclean -> clean for multiple VCS 17 years ago

README.namespaces

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
manageable.

Namespaces are defined the following way:

Zend/DB/Connection.php:
<?php
namespace Zend\DB;

class Connection {
}

function connect() {
}
?>

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
global name. Several files may be using the same namespace.
The namespace declaration statement must be the very first statement in
the file. The only exception is "declare" statement that can be used before.

Every class and function in a namespace can be referred to by the full name
- e.g. Zend\DB\Connection or Zend\DB\connect - at any time.

<?php
require 'Zend/Db/Connection.php';
$x = new Zend\DB\Connection;
Zend\DB\connect();
?>

Namespace or class name can be imported:

<?php
require 'Zend/Db/Connection.php';
use Zend\DB;
use Zend\DB\Connection as DbConnection;

$x = new Zend\DB\Connection();
$y = new DB\connection();
$z = new DbConnection();
DB\connect();
?>

The use statement only defines name aliasing. It may create name alias for
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
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
place the use statements at the beginning of the file. The use statements have
effect only on the file where they appear.

The special "empty" namespace (\ prefix) is useful as explicit global
namespace qualification. All class and function names started from \
interpreted as global.

<?php
namespace A\B\C;

$con = \mysql_connect(...);
?>

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
namespace A\B\C;

function foo() {
}

set_error_handler(__NAMESPACE__ . "\foo");
?>

In global namespace __NAMESPACE__ constant has the value of empty string.

Names inside namespace are resolved according to the following rules:

1) all qualified names are translated during compilation according to
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
current import rules. So if we have "use A\B\C" and then "new C()" it
is translated to "new A\B\C()".
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()
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
function foo(). Note that using foo() inside namespace you can call only
internal PHP functions, however using \foo() you are able to call any
function from the global namespace.
5) unqualified class names are resolved at run-time. E.q. "new Exception()"
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
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
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
static method foo()
7) qualified class names are interpreted as class from corresponding
namespace. So "new A\B\C()" refers to class C from namespace A\B.

Examples
--------
<?php
namespace A;
foo(); // first tries to call "foo" defined in namespace "A"
// then calls internal function "foo"
\foo(); // calls function "foo" defined in global scope
?>

<?php
namespace A;
new B(); // first tries to create object of class "B" defined in namespace "A"
// then creates object of internal class "B"
new \B(); // creates object of class "B" defined in global scope
?>

<?php
namespace A;
new A(); // first tries to create object of class "A" from namespace "A" (A\A)
// then creates object of internal class "A"
?>

<?php
namespace A;
B\foo(); // first tries to call function "foo" from namespace "A\B"
// then calls method "foo" of internal class "B"
\B\foo(); // first tries to call function "foo" from namespace "B"
// then calls method "foo" of class "B" from global scope
?>

The worst case if class name conflicts with namespace name
<?php
namespace A;
A\foo(); // first tries to call function "foo" from namespace "A\A"
// 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"
\A\foo(); // first tries to call function "foo" from namespace "A"
// then calls method "foo" of class "A" from global scope
?>

TODO
====

* Support for namespace constants?

* performance problems
- calls to internal functions in namespaces are slower, because PHP first
looks for such function in current namespace
- calls to static methods are slower, because PHP first tries to look
for corresponding function in namespace

* Extend the Reflection API?
* Add ReflectionNamespace class
+ getName()
+ getClasses()
+ getFunctions()
+ getFiles()
* Add getNamespace() methods to ReflectionClass and ReflectionFunction

* Rename namespaces to packages?