Revision tags: php-4.3.0pre2 |
|
#
1eb04a85 |
| 23-Oct-2002 |
Andi Gutmans |
- This might improve performance. Commiting it so that I can check it on - Linux
|
#
2461c940 |
| 20-Oct-2002 |
Stanislav Malyshev |
Fix private handling
|
#
cf36abb2 |
| 18-Oct-2002 |
Andi Gutmans |
- Change opcode dispatch mechanism to use a function per opcode and use - a lookup table using the opcode # to call the correct function. - Still have lots of tuning to do.
|
#
c42ec353 |
| 16-Oct-2002 |
Stanislav Malyshev |
Fix class static members: now the following code works: <?php class Foo { static $c = "Parent"; } class Child extends Foo { } Foo::$c = "Hello";
Fix class static members: now the following code works: <?php class Foo { static $c = "Parent"; } class Child extends Foo { } Foo::$c = "Hello"; var_dump(Child::$c); ?> and returns "Hello" (class statics are not copied anymore, but looked up in runtime)
show more ...
|
#
349b3a09 |
| 16-Oct-2002 |
Stanislav Malyshev |
Fix and generalize $this handling. ZEND_FETCH_FROM_THIS is removed, IS_UNUSED type on class variables will be used instead as the sign that it's a fetch from $this
|
Revision tags: RELEASE_1_0b1, php-4.3.0pre1 |
|
#
d3617c51 |
| 09-Oct-2002 |
Ilia Alshanetsky |
MFZE1 zend_str_tolower issue.
|
#
7cba0254 |
| 07-Oct-2002 |
Andi Gutmans |
- Allow access to private/protected variables of $clone inside the __clone() - method
|
Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003 |
|
#
ee7b8f90 |
| 26-Sep-2002 |
Ilia Alshanetsky |
MFZE1
|
#
974b5021 |
| 24-Sep-2002 |
Andi Gutmans |
- Fix leak
|
#
f78fa504 |
| 24-Sep-2002 |
Andi Gutmans |
- Megapatch to try and support inheritance from sub-classes. Things might - be *very* buggy now so don't get too upset if that happens. - I still need to improve some stuff but it's a good st
- Megapatch to try and support inheritance from sub-classes. Things might - be *very* buggy now so don't get too upset if that happens. - I still need to improve some stuff but it's a good step (hopefully).
show more ...
|
#
aa07082a |
| 17-Sep-2002 |
Zeev Suraski |
whitespace
|
#
f8ebfe7c |
| 15-Sep-2002 |
Andi Gutmans |
- Hopefully fix problem with __autoload not working well with inherited classes. - There might still be some weird situations I haven't thought of.
|
#
43139dc7 |
| 15-Sep-2002 |
Andi Gutmans |
- WS - Always use "if (" and not "if("
|
Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3 |
|
#
c2af55fb |
| 05-Sep-2002 |
Stanislav Malyshev |
quick-n-dirty inheritance support for __handlers
|
#
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 ...
|
Revision tags: php-4.2.3RC2, php-4.2.3RC1 |
|
#
b806a8e2 |
| 14-Aug-2002 |
Jason Greene |
MFZE1 (use token instead of global for opcode counting)
|
#
52406cb3 |
| 08-Aug-2002 |
Andi Gutmans |
- Make new 'is' operator work with classes only and return false when - the object isn't of the said class or the value isn't an object.
|
Revision tags: dev |
|
#
b0cf6c31 |
| 30-Jul-2002 |
Jason Greene |
MFZE1 global declare
|
#
838b8ba4 |
| 30-Jul-2002 |
Jason Greene |
Fix segfault
|
#
82c72f27 |
| 30-Jul-2002 |
Andrei Zmievski |
@- Adding 'is' operator that can be used to check the type of a variable, @ or its class. (Andrei)
|
#
b476ddf1 |
| 27-Jul-2002 |
Andi Gutmans |
- Make sure classes are first looked for in the current scope. - Make sure that during inheritance the global scope is searched if the - current one doesn't work.
|
#
8dd639ce |
| 21-Jul-2002 |
Andi Gutmans |
- Fix bug reported by Sebastian where old constructors didn't work in - nested classes.
|
Revision tags: php-4.2.2 |
|
#
0355dc55 |
| 17-Jul-2002 |
Andi Gutmans |
- Remove code which wasn't supposed to go into the patch.
|
#
9c52e883 |
| 17-Jul-2002 |
Andi Gutmans |
- Rejuggle some code.
|
#
bc5ea87e |
| 15-Jul-2002 |
Andi Gutmans |
- Commit patch to support protected member variables (by Timm Friebe w/ - some fixes by me). - You can't access protected variables from outside the object. If you want - to see a protect
- Commit patch to support protected member variables (by Timm Friebe w/ - some fixes by me). - You can't access protected variables from outside the object. If you want - to see a protected member from your ancestors you need to declare the - member as protected in the class you want to use it in. You can't - redeclare a protected variable as private nor the other way around.
show more ...
|