History log of /PHP-7.0/Zend/zend_globals.h (Results 176 – 200 of 261)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.1.0
# 42486196 06-Dec-2001 Andi Gutmans

- Initial work on changing namespace scope. Only methods & variables
- right now.
<?
$hey = "Global hey\n";

class foo {
static $hey = "Namespa

- Initial work on changing namespace scope. Only methods & variables
- right now.
<?
$hey = "Global hey\n";

class foo {
static $hey = "Namespace hey\n";
function bar()
{
print "in foo::bar()\n";
}
}
function bar()
{
print "in bar()\n";
}

bar();
namespace foo;
bar();
namespace;
bar();
namespace foo;
$bar_indirect = "bar";
$bar_indirect();

namespace;
print $hey;
namespace foo;
print $hey;
$hey = "Namespace hey #2\n";
namespace;
print $hey;
$hey = "Global hey #2\n";
namespace foo;
print $hey;
?>

show more ...


# 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, php-4.1.0RC3, php-4.1.0RC2
# 26578c38 29-Oct-2001 Andi Gutmans

- Initial support for nested class definitions


Revision tags: POST_PARAMETER_PARSING_API
# aecd5b89 23-Oct-2001 Zeev Suraski

MFZE1


Revision tags: 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
# e42ab2c9 22-Sep-2001 Zeev Suraski

MFZE1


# 17352812 22-Sep-2001 Zeev Suraski

MFZE1


# 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


1234567891011