History log of /PHP-5.5/Zend/zend.h (Results 226 – 250 of 404)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# cfad3c66 03-Sep-2002 Sebastian Bergmann

Add html_errors to zend_utility_values. Patch by Jan Lehnardt <jan@php.net>.


Revision tags: php-4.2.3RC2, php-4.2.3RC1
# 88d3154b 13-Aug-2002 Zeev Suraski

MFZE1


Revision tags: dev, php-4.2.2
# 0650a59a 18-Jul-2002 Derick Rethans

- MFZE1 - MacOSX fixes by Marko Karppinen


# bc5ea87e 15-Jul-2002 Andi Gutmans

- Commit patch to support protected member variables (by Timm Friebe w/
- some fixes by me).
- You can't access protected variables from outside the object. If you want
- to see a protect

- Commit patch to support protected member variables (by Timm Friebe w/
- some fixes by me).
- You can't access protected variables from outside the object. If you want
- to see a protected member from your ancestors you need to declare the
- member as protected in the class you want to use it in. You can't
- redeclare a protected variable as private nor the other way around.

show more ...


Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# f24cb973 29-Jun-2002 Andi Gutmans

- Get ready for alpha2


# 6339bd59 29-Jun-2002 Andi Gutmans

- Fix bug 15037
- Bump version to alpha2-dev


# ba72dbf3 24-Jun-2002 Andi Gutmans

- MFZE1


Revision tags: php-4.3.0dev, php5_5_0
# 90f43c78 08-Jun-2002 Andi Gutmans

- This should improve performance on Windows


Revision tags: RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE
# bc95839f 30-May-2002 Venkat Raghavan S

NetWare changes


Revision tags: 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
# 51e797f1 23-Apr-2002 Harald Radi

some type cleanup work


Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3
# a68b4481 07-Apr-2002 Stanislav Malyshev

make compatible with current PHP


Revision tags: php-4.2.0RC2
# d5e64b22 20-Mar-2002 Harald Radi

added thread safe hashtable which allows concurrent
reads but only exclusive writes


Revision tags: php-4.2.0RC1
# a990c4da 19-Mar-2002 Andi Gutmans

- Finish covering all parsed methods to check for validity in parser.
- Change zval's refcount to zend_uint (If it doesn't slow down the Engine
- too much it should probably stay this way). I

- Finish covering all parsed methods to check for validity in parser.
- Change zval's refcount to zend_uint (If it doesn't slow down the Engine
- too much it should probably stay this way). If anyone has time to test
- the difference in speed between zend_ushort & zend_uint in zend.h of
- the struct _zval_struct (one line change) I'd be glad to get some
- figures.

show more ...


Revision tags: help
# 0ee65254 12-Mar-2002 Andi Gutmans

- Forgot to close comment.


# 9760fdcb 12-Mar-2002 Andi Gutmans

- Macro for duality between Engine 1 and 2


# fb6976e4 12-Mar-2002 Andi Gutmans

- Another couple of indirection fixes.
- Make class_entry->refcount be part of the structure and not allocated.


# 92dd5e61 12-Mar-2002 Stanislav Malyshev

- make class tables contain class_entry *, not class_entry
- fix isset($this)


Revision tags: php-4.1.2
# 00e90f2f 21-Feb-2002 Andi Gutmans

- Experimental support for private members.
<?
class MyClass {
private $Hello = "Hello, World!\n";

function printHello()

- Experimental support for private members.
<?
class MyClass {
private $Hello = "Hello, World!\n";

function printHello()
{
print $this->Hello;
}
}

class MyClass2 extends MyClass {
function printHello()
{
MyClass::printHello(); /* Should print */
print $this->Hello; /* Shouldn't print out anything */
}
}

$obj = new MyClass();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello(); /* Should print */

$obj = new MyClass2();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello();
?>

show more ...


# cefbdccb 14-Feb-2002 Stanislav Malyshev

Pass TSRM to create_object


# 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
# 62dc854b 06-Jan-2002 Sebastian Bergmann

Happy New Year.


# 8a0c756c 29-Dec-2001 Andi Gutmans

- #define to help #ifdef stuff in PHP sources to make them work w/ ZE1 and
- 2


# 73b159e0 27-Dec-2001 Andi Gutmans

- Experimental support for destructors. We need to see if destructors
- will actually work well in the context of PHP so we should consider this
- as experimental. Possible problems might be

- Experimental support for destructors. We need to see if destructors
- will actually work well in the context of PHP so we should consider this
- as experimental. Possible problems might be that when the constructor is
- run PHP might not be in a stable state.

show more ...


# 29ea3da2 26-Dec-2001 Andi Gutmans

- Pretty much finish _clone() support


12345678910>>...17