History log of /PHP-8.0/Zend/zend_execute_API.c (Results 726 – 750 of 936)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 95a936be 15-Jun-2003 Stanislav Malyshev

Fix bug #18872 - Improper handling of class constants used as default
function argument values


# efafae14 15-Jun-2003 Stanislav Malyshev

Fix bug #21800 - initialize opcode handlers in interactive mode


# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


# 7959b2d7 09-Jun-2003 Wez Furlong

Fix for Bug #23951


# 565985ac 09-Jun-2003 Stanislav Malyshev

Support 'self' and 'parent' in call_user_func()


# f7f5a5ea 02-Jun-2003 Stanislav Malyshev

MEGA-patch: namespaces are R.I.P.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4
# 7af8eadd 21-May-2003 Marcus Boerger

Make zend_str_tolower_copy() a copy function (like stccpy).
Supply a dup version (like estrdup).
Fix tolower() handling.
# Havin copy and dup allows to use the faster version even with

Make zend_str_tolower_copy() a copy function (like stccpy).
Supply a dup version (like estrdup).
Fix tolower() handling.
# Havin copy and dup allows to use the faster version even with
# memory not allocated by emalloc.

show more ...


Revision tags: BEFORE_FD_REVERT
# ca6ca5e2 20-May-2003 Sterling Hughes

optimize the lookups by avoiding a copy and then another pass

Naked Dancing Girls should be given to: Myself, Zeev, Marcus,
and George Schlossnagle (in no particular order)


# 909eafc2 20-May-2003 Sterling Hughes

add fast_call_user_function()


Revision tags: php-4.3.2RC3, RELEASE_0_9b
# fe47a383 12-May-2003 Marcus Boerger

One function call is enough


Revision tags: SPL_ALPHA, php-4.3.2RC2
# 52ac291c 20-Apr-2003 Stanislav Malyshev

Check name before '::' so that it would be a namespace in zend_lookup_ns_class


Revision tags: RELEASE_0_6, RELEASE_0_5, init
# 3b47a642 08-Apr-2003 Andrei Zmievski

Add zend_lookup_ns_class() function.


# 3fc85282 26-Mar-2003 Sebastian Bergmann

Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().


Revision tags: php-4.3.2RC1
# 36eae0b7 02-Mar-2003 Zeev Suraski

Fix destructors some more


Revision tags: php-4.3.1
# 6d300baf 16-Feb-2003 Sebastian Bergmann

ZTS fixes


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


# e62f37c8 14-Feb-2003 Thies C. Arntzen

init current_execute_data befor we start executing


# dbb73d8f 10-Feb-2003 Zeev Suraski

Add ability to reference self:: and parent:: in constant initializers
(bug #21849)


# 333406bd 01-Feb-2003 foobar

- Added some missing CVS $Id$ tags, headers and footers.


# 62db0b48 30-Jan-2003 Ilia Alshanetsky

Fix ZTS build.


# 03f88ac2 29-Jan-2003 Stanislav Malyshev

Add additional stage to post-session cleanup.
We need separate cleanup stage because of the following problem:
Suppose we destroy class X, which destroys function table,
and in function t

Add additional stage to post-session cleanup.
We need separate cleanup stage because of the following problem:
Suppose we destroy class X, which destroys function table,
and in function table we have function foo() that has static $bar. Now if
object of class X was assigned to $bar, its destructor will be called and will
fail since X's function table is in mid-destruction.
So we want first of all to clean up all data and then move to tables
destruction.
Note that only run-time accessed data need to be cleaned up, pre-defined
data can not contain objects and thus are not probelmatic.
# Looks like we are having a lots of pain in the various parts of the body
# because of the destructors...

show more ...


# f73def91 29-Jan-2003 Stanislav Malyshev

Fix object destructors:
zend_objects_store_call_destructors is not used anymore, we rely on
symbol tables cleaners to destroy all objects.


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 7a93625e 23-Jan-2003 foobar

Fixed bug: #14542, register_shutdown_function() timeout problem


# 424e98f4 12-Jan-2003 Zeev Suraski

Implemented compatibility mode
To enable - zend2.implicit_clone = on in php.ini or using ini_set()


# 2c44fab3 11-Jan-2003 Derick Rethans

- Ported the zend_execute_internal hook to ZendEngine2.


1...<<21222324252627282930>>...38