From: Sebastian Bergmann Date: Wed, 26 Feb 2003 08:27:14 +0000 (+0000) Subject: Syntactic sugar is sweet. X-Git-Tag: RELEASE_0_5~739 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=189d29061e0f4f3231fbd1c8884bf0191ecdaa9f;p=php Syntactic sugar is sweet. --- diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES index 4c8f791aa3..0c2420afc7 100644 --- a/Zend/ZEND_CHANGES +++ b/Zend/ZEND_CHANGES @@ -175,6 +175,11 @@ Changes in the Zend Engine 2.0 Foo::$aVariable = 'someValue'; ?> + A namespace's name may contain colons to denote "sub-namespaces". + This is pure syntactic sugar, the Zend Engine will not see, for + instance, the namespaces "Package", "Package:Subpackage" and + "Package:Subpackage:Subsubpackage" as related. + To avoid ambiguities in the '::' resolution there may be no global class and namespace with the same name.