History log of /PHP-5.3/Zend/zend.c (Results 251 – 275 of 398)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.1.0
# 84603723 08-Dec-2001 Andi Gutmans

- Fix crash with unhandled exceptions


# fe94f594 06-Dec-2001 Andi Gutmans

- Nuke the namespace work I did. It'll be redone differently.


Revision tags: php-4.1.0RC5, 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 ...


# 0d559f17 25-Nov-2001 Andi Gutmans

- Fix crash and leak


# 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
# 2eccd95c 03-Nov-2001 Andi Gutmans

- Add some initializations


Revision tags: POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1, php4, php-4.0.7RC3
# 2eabb14d 30-Sep-2001 Andi Gutmans

- Merge the NAMESPACES_BRANCH. It wasn't a good idea to have a branch when
- the whole CVS tree is work in progress


Revision tags: POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS
# 17352812 22-Sep-2001 Zeev Suraski

MFZE1


# 483fc4c7 19-Sep-2001 Zeev Suraski

MFZE1


# b06440bc 10-Sep-2001 Zeev Suraski

MFZE1 (support return value in execute_scripts)


Revision tags: php-4.0.7RC2
# 819ea51d 31-Aug-2001 Zeev Suraski

MFZE1


# 4757104e 21-Aug-2001 Zeev Suraski

MFZE1


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# 4f6c95d1 11-Aug-2001 Zeev Suraski

Whitespace


# 80b870e5 09-Aug-2001 Andi Gutmans

- Merge from Engine 1 tree


# 9d11db12 08-Aug-2001 Andi Gutmans

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


Revision tags: PRE_METHOD_DEREFERENCE_PATCH
# 2f6cd308 08-Aug-2001 Andi Gutmans

- Merge zend_try fix from Engine 1


Revision tags: BEFORE_PARAM_PARSING_CHANGE, PRE_ENGINE2_SPLIT
# 609d58a4 06-Aug-2001 Zeev Suraski

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


# fcc03510 05-Aug-2001 Zeev Suraski

TSRMLS_FETCH work


# 66d9314b 03-Aug-2001 Zeev Suraski

Implement fast memory allocation and reduced fragmentation under Windows.


# 7deb44e3 02-Aug-2001 Zeev Suraski

Some cleanup


# d76cf1da 31-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work


# 4187439c 30-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work


# b5770382 30-Jul-2001 Zeev Suraski

Avoid TSRMLS_FETCH()'s (still lots of work left)


# c259cb7c 29-Jul-2001 Andi Gutmans

- Object macros...


# b4f3b9d3 28-Jul-2001 Zeev Suraski

Redesigned thread safety mechanism - nua nua


1...<<111213141516