History log of /PHP-7.4/Zend/zend_globals.h (Results 226 – 250 of 304)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 483fc4c7 19-Sep-2001 Zeev Suraski

MFZE1


# 9f61e47c 10-Sep-2001 Zeev Suraski

MFZE1 (nuke cplusplus code)


# b06440bc 10-Sep-2001 Zeev Suraski

MFZE1 (support return value in execute_scripts)


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

- Initial support for exceptions.


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# 9d11db12 08-Aug-2001 Andi Gutmans

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


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 ;


# 609d58a4 06-Aug-2001 Zeev Suraski

Merge from branch - move to standard C scanners in thread safe mode


# 66d9314b 03-Aug-2001 Zeev Suraski

Implement fast memory allocation and reduced fragmentation under Windows.


# 8ce8324e 30-Jul-2001 Zeev Suraski

More TSRMLS_FETCH annihilation


Revision tags: PRE_TSRM_MERGE_PATCH
# 931ebe08 21-Jul-2001 Zeev Suraski

Improve bailout mechanism, supports nesting of bailouts a-la try..catch


# 43ebb868 16-Jul-2001 Zeev Suraski

Fix bug #10287 - avoid crashing under a bogus usage of list()


# 85b4df53 15-Jul-2001 Zeev Suraski

Improved interactive mode - it is now available in all builds, without any significant slowdown


# 5bf89ce6 21-Jun-2001 Andi Gutmans

- Hopefully fix bug #11476 and improve garbage to be freed very quickly.
Tree tagged as PRE_GRANULAR_GARBAGE_FIX before commiting.


Revision tags: PRE_GRANULAR_GARBAGE_FIX
# cb0d2775 21-Jun-2001 Zeev Suraski

parent::methodname() now works better with runtime classes (fix bug #11589)


Revision tags: php-4.0.6, php-4.0.6RC4, php-4.0.6RC3, php-4.0.6RC2
# 4c0d85ba 16-May-2001 Zeev Suraski

Commit missing fix


# 260b4d0d 16-May-2001 Zeev Suraski

Merge memory usage into memory limit


Revision tags: php-4.0.6RC1
# 8ca106bf 11-May-2001 Thies C. Arntzen

added --enable-memory-usage-info


Revision tags: php-4.0.5, php-4.0.5RC8, php-4.0.5RC7, php-4.0.5RC6, php-4.0.5RC5, php-4.0.5RC4, php-4.0.5RC3, php-4.0.5RC2, php-4.0.5RC1
# d2c9e807 26-Feb-2001 Andi Gutmans

- Update copyright year


Revision tags: php-4.0.4pl1, php-4.0.4pl1RC2, php-4.0.4pl1RC1
# 54d53055 27-Dec-2000 Zeev Suraski

Make the INI mechanism thread safe (or at least thread safer :)


Revision tags: php-4.0.4REL, php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4, php-4.0.4RC3
# 2ef6b689 22-Nov-2000 Sascha Schumann

Pass on the exit status


# 9596255d 30-Oct-2000 Zeev Suraski

Final touches on the INI parser


# 6b4c3691 29-Oct-2000 Zeev Suraski

Generalization work


Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1, php-4.0.2, PRE_LIBMYSQL_REVERT, php-4.0.2RC1
# c34f41b7 19-Aug-2000 Zeev Suraski

Eliminate run-time leak with eval()'s


# c06692e9 09-Aug-2000 Zeev Suraski

The patch we promised - redesigned the compilation/execution API:
Advantages:
- Smaller memory footprint for the op arrays
- Slightly faster compilation times (due to saved erealloc() cal

The patch we promised - redesigned the compilation/execution API:
Advantages:
- Smaller memory footprint for the op arrays
- Slightly faster compilation times (due to saved erealloc() calls and faster zend_op
initialization)
- include_once() & require_once() share the same file list
- Consistency between include() and require() - this mostly means that return()
works inside require()'d files just as it does in include() files (it used to
be meaningless in require()'d files, most of the time (see below))
- Made require() consistent with itself. Before, if the argument was not a constant
string, require() took the include() behavior (with return()).
- Removed lots of duplicate code.
Bottom line - require() and include() are very similar now; require() is simply an include()
which isn't allowed to fail. Due to the erealloc() calls for large op arrays, require()
didn't end up being any faster than include() in the Zend engine.

show more ...


12345678910>>...13