History log of /PHP-7.1/Zend/zend_compile.c (Results 1726 – 1750 of 1956)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.1.0RC2
# a332f826 04-Nov-2001 Andi Gutmans

- Support instantiation of nested class. The following script now should
- work:
-<?php
- class foo
- {
- function bar()
- {
-

- Support instantiation of nested class. The following script now should
- work:
-<?php
- class foo
- {
- function bar()
- {
- print "bar() in class bar\n";
- }
-
- class barbara
- {
- function bar()
- {
- print "bar() in class foo::barbara\n";
- }
- }
- }
-
- $obj = new foo();
- $obj->bar();
-
- $obj = new foo::barbara();
- $obj->bar();
-

show more ...


# 2eccd95c 03-Nov-2001 Andi Gutmans

- Add some initializations


# b87194e0 03-Nov-2001 Andi Gutmans

- Add constructor to the zend_class_entry instead of looking it up each
- time by name.
- This will allow the next patch of being able to instantiate nested
- classes such as new foo::bar

- Add constructor to the zend_class_entry instead of looking it up each
- time by name.
- This will allow the next patch of being able to instantiate nested
- classes such as new foo::bar::barbara();

show more ...


# 26578c38 29-Oct-2001 Andi Gutmans

- Initial support for nested class definitions


Revision tags: POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1, php4, php-4.0.7RC3
# 2eabb14d 30-Sep-2001 Andi Gutmans

- Merge the NAMESPACES_BRANCH. It wasn't a good idea to have a branch when
- the whole CVS tree is work in progress


Revision tags: POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS
# f88c25b6 16-Sep-2001 Zeev Suraski

MFZE1


# d7536a8a 07-Sep-2001 Andi Gutmans

- Shift around the variable parsing code to make it simpler.


Revision tags: php-4.0.7RC2
# 61970215 30-Aug-2001 Andi Gutmans

- Make it compile in thread-safe mode.


# 560606d2 30-Aug-2001 Andi Gutmans

- Get rid of warning and C++ comments


# 29f5dbe1 30-Aug-2001 Andi Gutmans

- Initial support for exceptions.


# 4340c57e 19-Aug-2001 Zeev Suraski

MFZE1


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# 4f6c95d1 11-Aug-2001 Zeev Suraski

Whitespace


# 73d4931d 11-Aug-2001 Andi Gutmans

- Need to do some rewriting in the parser instead of this.


# 8ff09404 10-Aug-2001 Andi Gutmans

- A couple of fixes


# 9d11db12 08-Aug-2001 Andi Gutmans

- Merge new $_GET, $_POST etc. patch from Engine 1 tree


# cb1a40f3 08-Aug-2001 Andi Gutmans

- Preliminary patch for method() dereferencing


Revision tags: PRE_METHOD_DEREFERENCE_PATCH, BEFORE_PARAM_PARSING_CHANGE
# 5af7770a 07-Aug-2001 Andi Gutmans

- Sync Engine2 CVS with latest Engine CVS


Revision tags: PRE_ENGINE2_SPLIT
# 7ade3b30 06-Aug-2001 Zeev Suraski

Fix an off by one lineno issue, in case of an implicit ;


# d76cf1da 31-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work


# 4187439c 30-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work


# b4f3b9d3 28-Jul-2001 Zeev Suraski

Redesigned thread safety mechanism - nua nua


# 2c254ba7 27-Jul-2001 Zeev Suraski

Get rid of ELS_*(), and use TSRMLS_*() instead.
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...


Revision tags: PRE_TSRM_MERGE_PATCH
# fc260e6c 21-Jul-2001 Andrei Zmievski

Fix certain cases where inheritance of base class's overloaded handlers wasn't
being done.


# d68f53e9 19-Jul-2001 Zeev Suraski

Unfix, it has too strong effects


# ce29cb29 19-Jul-2001 Zeev Suraski

Catch all cases


1...<<61626364656667686970>>...79