History log of /PHP-5.3/Zend/zend_execute.c (Results 426 – 450 of 809)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1eb04a85 23-Oct-2002 Andi Gutmans

- This might improve performance. Commiting it so that I can check it on
- Linux


# 4a9f1a93 23-Oct-2002 Andi Gutmans

- Make Ts access a macro. I need this for my next patch which should
- improve performance but not sure yet if it will.


# 8cbe1ea7 22-Oct-2002 Andi Gutmans

- Nuke unused get_incdec_op()
- Nuke old comment


# d12679a6 22-Oct-2002 Andi Gutmans

- Improve overall engine performance


# 32935452 22-Oct-2002 Andi Gutmans

- Fix bug reported by Daniel T. Gorski


# 536d4d8a 19-Oct-2002 Andi Gutmans

- Improve opcode dispatching


# 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.


# 7f9819e6 18-Oct-2002 Andi Gutmans

- Cleanup


# 7b0949b0 16-Oct-2002 Sebastian Bergmann

Fix ZTS build.


# 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


# 046bdeaa 14-Oct-2002 Andi Gutmans

- Support new classname::$class_name, e.g.:
<?

class foo::bar {
public $hello = "Hello, World\n";
}

$name = "bar";
$o

- Support new classname::$class_name, e.g.:
<?

class foo::bar {
public $hello = "Hello, World\n";
}

$name = "bar";
$obj = new foo::$name;
print $obj->hello;
?>

show more ...


Revision tags: RELEASE_1_0b1, php-4.3.0pre1
# d3617c51 09-Oct-2002 Ilia Alshanetsky

MFZE1 zend_str_tolower issue.


# 77b3ffbc 07-Oct-2002 Andi Gutmans

- Require $this-> when calling a methods. This whole automatic lookup
- first in the class and then in the global scope is confusing, slow and
- not quite BC compatible.


# 278a00e1 06-Oct-2002 Andi Gutmans

- Fix problem with unsetting object members.


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# ee7b8f90 26-Sep-2002 Ilia Alshanetsky

MFZE1


# 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 ...


# 7f6c2da5 15-Sep-2002 Andi Gutmans

- WS fix - "while (" instead of "while("


# 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
# 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
# c8a659f8 02-Sep-2002 Stanislav Malyshev

MFZE1


Revision tags: php-4.2.3RC1
# 10b58f21 23-Aug-2002 Thies C. Arntzen

those are set by RETURN_FROM_EXECUTE


# d88ca858 21-Aug-2002 Thies C. Arntzen

zend_execute: make sure that current_execute_data points to the right thing
after coming back from recursion.


# 2372caf5 17-Aug-2002 Andi Gutmans

MFZE1


# b66561c4 17-Aug-2002 Zeev Suraski

MFZE1


1...<<11121314151617181920>>...33