Revision tags: php-4.1.0RC4 |
|
#
e858d278 |
| 30-Nov-2001 |
Andi Gutmans |
- Initial support for class constants. There are still a few semantic - issues which need to be looked into but basically it seems to work. - Example: <?php class foo
- Initial support for class constants. There are still a few semantic - issues which need to be looked into but basically it seems to work. - Example: <?php class foo { const hey = "hello"; } print foo::hey; ?>
show more ...
|
#
d2da63f6 |
| 25-Nov-2001 |
Andi Gutmans |
- Support static members. The following script works: <? class foo { class bar { function init_values()
- Support static members. The following script works: <? class foo { class bar { function init_values() { for ($i=1; $i<10; $i++) { foo::bar::$hello[$i] = $i*$i; } } function print_values() { for ($i=1; $i<10; $i++) { print foo::bar::$hello[$i] . "\n"; } } } } foo::bar::init_values(); foo::bar::print_values(); for ($i=1; $i<10; $i++) { print $hello[$i]?"Shouldn't be printed\n":""; } ?>
show more ...
|
Revision tags: php-4.1.0RC3, php-4.1.0RC2 |
|
#
0a682c6d |
| 29-Oct-2001 |
Andi Gutmans |
- Fix internal classes
|
Revision tags: POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API |
|
#
3ead3144 |
| 20-Oct-2001 |
Andrei Zmievski |
MFHZ1
|
Revision tags: php-4.1.0RC1 |
|
#
01850714 |
| 12-Oct-2001 |
Sebastian Bergmann |
MFZE1: Introduced extension version numbers (Stig)
|
Revision tags: php4, php-4.0.7RC3, POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS, php-4.0.7RC2 |
|
#
e2efa019 |
| 26-Aug-2001 |
Andi Gutmans |
- Merge Andrei's fix from Engine 1. Please commit patches to both trees!
|
Revision tags: php-4.0.7RC1 |
|
#
8722b31d |
| 13-Aug-2001 |
Zeev Suraski |
MFZE1
|
Revision tags: BEFORE_EXP_MERGE |
|
#
76a7a5bc |
| 11-Aug-2001 |
Andi Gutmans |
- More work on making objects work
|
#
532677e7 |
| 11-Aug-2001 |
Andi Gutmans |
- Fix some places which create objects. The fixes are ugly and will be revised when things start working well
|
#
4f6c95d1 |
| 11-Aug-2001 |
Zeev Suraski |
Whitespace
|
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 |
|
#
fcc03510 |
| 05-Aug-2001 |
Zeev Suraski |
TSRMLS_FETCH work
|
#
d76cf1da |
| 31-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH work
|
#
4187439c |
| 30-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH work
|
#
e8ac55d0 |
| 30-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH work
|
#
b5255495 |
| 30-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRef
|
#
3839af35 |
| 30-Jul-2001 |
Andrei Zmievski |
Let's be consisten and keep TSRMLS_DC declaration after num_args.
|
#
8ce8324e |
| 30-Jul-2001 |
Zeev Suraski |
More TSRMLS_FETCH annihilation
|
#
11e5d2f2 |
| 30-Jul-2001 |
Zeev Suraski |
Get rid of more TSRMLS_FETCH's
|
#
b5770382 |
| 30-Jul-2001 |
Zeev Suraski |
Avoid TSRMLS_FETCH()'s (still lots of work left)
|
#
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 |
|
#
87e39243 |
| 11-Jul-2001 |
Zeev Suraski |
Remove the last couple of bogus inlines
|
#
ed542331 |
| 11-Jul-2001 |
Zeev Suraski |
Get rid of some inlines
|
#
58f88057 |
| 09-Jul-2001 |
Andrei Zmievski |
Adding new parameter parsing API.
|