History log of /PHP-7.0/Zend/zend.c (Results 476 – 500 of 620)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 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


# 2c254ba7 27-Jul-2001 Zeev Suraski

Get rid of ELS_*(), and use TSRMLS_*() instead.
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...


Revision tags: PRE_TSRM_MERGE_PATCH
# ef4fe54f 21-Jul-2001 Zeev Suraski

Always track bailout file/lineno


# 5f2da6f2 21-Jul-2001 Zeev Suraski

Fix Release builds


1...<<11121314151617181920>>...25