History log of /PHP-5.6/Zend/zend_globals.h (Results 101 – 125 of 215)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 333406bd 01-Feb-2003 foobar

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


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 424e98f4 12-Jan-2003 Zeev Suraski

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


# cf05f34c 05-Jan-2003 Zeev Suraski

MFZE1 - lineno fix


# 2c5d4b8c 31-Dec-2002 Sebastian Bergmann

Bump year.


Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3
# e062dffe 06-Dec-2002 Zeev Suraski

- Implement public/protected/private methods.
- Prevent instantiation of classes with abstract methods.
Based in part on Marcus's patch.


Revision tags: php-4.3.0RC2, RELEASE_1_0b2, BEFORE_RENAMING, php-4.3.0RC1, php-4.3.0pre2
# d12679a6 22-Oct-2002 Andi Gutmans

- Improve overall engine performance


# fac8eaff 14-Oct-2002 Ilia Alshanetsky

MFZE1


# e842ef9f 12-Oct-2002 Ilia Alshanetsky

MFZE1 (floats & locale issue)


Revision tags: RELEASE_1_0b1, php-4.3.0pre1
# 7cba0254 07-Oct-2002 Andi Gutmans

- Allow access to private/protected variables of $clone inside the __clone()
- method


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# 8831b9cf 23-Sep-2002 Andi Gutmans

- MFZE1.


Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2, php-4.2.3RC1
# 04788f95 16-Aug-2002 Stig Bakken

@- Added set_exception_handler() function for registering a global,
@ catch-all exception handling function (Stig)
- Added set_exception_handler() function for registering a global,
ca

@- Added set_exception_handler() function for registering a global,
@ catch-all exception handling function (Stig)
- Added set_exception_handler() function for registering a global,
catch-all exception handling function (Stig)

show more ...


# 0bb780b3 15-Aug-2002 Zeev Suraski

MFZE1


# b806a8e2 14-Aug-2002 Jason Greene

MFZE1 (use token instead of global for opcode counting)


Revision tags: dev
# b0cf6c31 30-Jul-2002 Jason Greene

MFZE1 global declare


Revision tags: php-4.2.2, INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# e2f57d0f 22-Jun-2002 Andi Gutmans

- MFZE1


# 9e351716 19-Jun-2002 Andi Gutmans

- This was also supposed to be part of the previous ZEND_MM commit :)


# 380c082e 16-Jun-2002 Andi Gutmans

- Commit an initial version of a home made memory manager.
- It's just for seeing if this would be an advantage to PHP in MT
- environments. If this is to become production material there is

- Commit an initial version of a home made memory manager.
- It's just for seeing if this would be an advantage to PHP in MT
- environments. If this is to become production material there is still
- a long way to go.

show more ...


Revision tags: php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1
# f75f3cff 31-May-2002 Stanislav Malyshev

Generalize object storage and reference bookkeeping


Revision tags: BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2
# 7e5ec2d7 02-May-2002 Andi Gutmans

Initial support for built-in backtracing.
There are still a few problems such as includes and calling other functions
from internal functions which aren't seen (will have to think if and how

Initial support for built-in backtracing.
There are still a few problems such as includes and calling other functions
from internal functions which aren't seen (will have to think if and how to
fix this).
Also the main scripts filename isn't available. Need to think about that.

show more ...


Revision tags: php-4.2.1RC1, php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1, help
# b90d80b5 02-Mar-2002 Andi Gutmans

- Initial patch to support importing from class scopes (for Stig).
- It isn't complete yet but I want to work on it from another machine. It
- shouldn't break anything else so just don't try

- Initial patch to support importing from class scopes (for Stig).
- It isn't complete yet but I want to work on it from another machine. It
- shouldn't break anything else so just don't try and use it.
- The following is a teaser of something that already works:
<?php

class MyClass
{
function hello()
{
print "Hello, World\n";
}
class MyClass2
{
function hello()
{
print "Hello, World in MyClass2\n";
}
}
}

import function hello, class MyClass2 from MyClass;

MyClass2::hello();
hello();
?>

show more ...


# 90bd4539 01-Mar-2002 Andi Gutmans

- Remove use of C++ reserved words namespace/this


Revision tags: php-4.1.2
# 6608f073 07-Feb-2002 Stanislav Malyshev

Mega-commit: Enter the new object model
Note: only standard Zend objects are working now. This is definitely going to
break custom objects like COM, Java, etc. - this will be fixed later.

Mega-commit: Enter the new object model
Note: only standard Zend objects are working now. This is definitely going to
break custom objects like COM, Java, etc. - this will be fixed later.
Also, this may break other things that access objects' internals directly.

show more ...


Revision tags: BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH
# f1e8815c 13-Jan-2002 Andi Gutmans

- Change exception handling to use the Java-like catch(MyException $exception)
- semantics. Example:
<?php

class MyException {
function __construct($excep

- Change exception handling to use the Java-like catch(MyException $exception)
- semantics. Example:
<?php

class MyException {
function __construct($exception)
{
$this->exception = $exception;
}

function Display()
{
print "MyException: $this->exception\n";
}

}
class MyExceptionFoo extends MyException {
function __construct($exception)
{
$this->exception = $exception;
}
function Display()
{
print "MyException: $this->exception\n";
}
}

try {
throw new MyExceptionFoo("Hello");
} catch (MyException $exception) {
$exception->Display();
}
?>

show more ...


# 62dc854b 06-Jan-2002 Sebastian Bergmann

Happy New Year.


# a4248dd5 05-Jan-2002 Andi Gutmans

- Significantly improve the performance of method calls and $this->member
- lookups.


123456789