Revision tags: RELEASE_0_6, RELEASE_0_5, init |
|
#
5657b836 |
| 31-Mar-2003 |
Andrei Zmievski |
Multi-purpose patch: - The fields of zend_namespace were not completely initialized which led to a variety of problems. - The occurrence of class/interface/namespace definition is no
Multi-purpose patch: - The fields of zend_namespace were not completely initialized which led to a variety of problems. - The occurrence of class/interface/namespace definition is now captured. - Functions/classes/interfaces/namespaces can be preceded by doc comments which are stored for use by extensions.
show more ...
|
Revision tags: php-4.3.2RC1 |
|
#
26dd8492 |
| 05-Mar-2003 |
Zeev Suraski |
Add support for interfaces |
#
955636af |
| 18-Feb-2003 |
Zeev Suraski |
Avoid using a C++ reserved word |
#
e52aac94 |
| 18-Feb-2003 |
Wez Furlong |
Implement simple stream support in the ZE scanners. |
Revision tags: php-4.3.1 |
|
#
a4c3b2ce |
| 16-Feb-2003 |
Stanislav Malyshev |
Namespace patch. Big changes: 1. Nested classes are gone. 2. New syntax for namespaces: namespace foo { class X { ... } function bar { ... } var x = 1;
Namespace patch. Big changes: 1. Nested classes are gone. 2. New syntax for namespaces: namespace foo { class X { ... } function bar { ... } var x = 1; const ZZ = 2; } 3. Namespaced symbol access: $x = new foo::X; - etc. For now, namespaces are case insensitive, just like classes. Also, there can be no global class and namespace with the same name (to avoid ambiguities in :: resolution).
show more ...
|
#
c17c7a2b |
| 10-Feb-2003 |
Zeev Suraski |
Centralize class initialization |
#
17439aa9 |
| 05-Feb-2003 |
Zeev Suraski |
Rework static class properties - now supports access restrictions |
#
471947b1 |
| 04-Feb-2003 |
Zeev Suraski |
Reimplement PPP properties |
#
31196cf6 |
| 02-Feb-2003 |
Zeev Suraski |
whitespace |
#
333406bd |
| 01-Feb-2003 |
foobar |
- Added some missing CVS $Id$ tags, headers and footers. |
Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix |
|
#
7431b522 |
| 15-Jan-2003 |
Sascha Schumann |
Revert commit which turned the lengths of strings into zend_uint. |
#
d48ffd97 |
| 12-Jan-2003 |
Stanislav Malyshev |
RIP handle_* functions. ZE2 will use __ handlers instead. # Yes, I know this will break some things. I will fix those I can find shortly. |
#
24db7f18 |
| 12-Jan-2003 |
Sebastian Bergmann |
ZTS fixes. |
#
24d03425 |
| 08-Jan-2003 |
James Cox |
cvs is dev not alpha. |
#
2c5d4b8c |
| 31-Dec-2002 |
Sebastian Bergmann |
Bump year. |
Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3 |
|
#
e062dffe |
| 06-Dec-2002 |
Zeev Suraski |
- Implement public/protected/private methods. - Prevent instantiation of classes with abstract methods. Based in part on Marcus's patch. |
#
27de54b0 |
| 01-Dec-2002 |
Andi Gutmans |
- MFZE1 |
#
f222884e |
| 01-Dec-2002 |
Andi Gutmans |
- Revert as the patch doesn't compile |
#
b6ecd670 |
| 01-Dec-2002 |
Andi Gutmans |
- MFZE1 |
Revision tags: php-4.3.0RC2, RELEASE_1_0b2 |
|
#
4be862b0 |
| 19-Nov-2002 |
Zeev Suraski |
MFZE1 - error_reporting fix |
Revision tags: BEFORE_RENAMING, php-4.3.0RC1 |
|
#
32e8ee9b |
| 11-Nov-2002 |
Ilia Alshanetsky |
MFZE1 |
Revision tags: php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1, MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003 |
|
#
bd115087 |
| 19-Sep-2002 |
Zeev Suraski |
MFZE1 - connection_status() fix |
#
711be83d |
| 17-Sep-2002 |
Zeev Suraski |
MFZE1 - threading fix |
Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3 |
|
#
e3ca0ff0 |
| 08-Sep-2002 |
Andi Gutmans |
- Prepare for alpha 3 |
Revision tags: php-4.2.3 |
|
#
d8651c82 |
| 04-Sep-2002 |
Stanislav Malyshev |
Support for __get, __set and __call in classes. This should work as follows: if class hasn't member with given name, __get/__set is called. If class has no method with given name, __call is c
Support for __get, __set and __call in classes. This should work as follows: if class hasn't member with given name, __get/__set is called. If class has no method with given name, __call is called. __get/__set are not recursive, __call can be.
show more ...
|