History log of /PHP-5.5/Zend/zend_object_handlers.c (Results 226 – 250 of 251)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# f30f3590 14-Jan-2003 Stanislav Malyshev

ws


# 1b355e11 12-Jan-2003 Stanislav Malyshev

Move Z_OBJ_P here.


# 6cc7ee26 12-Jan-2003 Stanislav Malyshev

add get_class_name handler


Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3
# 671fff2f 30-Nov-2002 Andi Gutmans

h WHitespace


Revision tags: php-4.3.0RC2, RELEASE_1_0b2
# e8214a33 23-Nov-2002 Andi Gutmans

- Commit Marcus' cleanup of abstract and static inheritance and improve
- error messages


Revision tags: BEFORE_RENAMING, php-4.3.0RC1
# 8ee50801 12-Nov-2002 Stanislav Malyshev

fix static


Revision tags: php-4.3.0pre2
# c33a695f 20-Oct-2002 Stanislav Malyshev

looks like this message should go


Revision tags: RELEASE_1_0b1, php-4.3.0pre1
# f45d2f92 10-Oct-2002 Stanislav Malyshev

add comment


# 98ad93fb 10-Oct-2002 Stanislav Malyshev

fix memory leaks


# e22e61a4 09-Oct-2002 Stanislav Malyshev

Fix object write handler behaviour:
* If this value is already set to given value, don't try to set it again.
* If we have reference, we should not move it.
* If we are assigning referenc

Fix object write handler behaviour:
* If this value is already set to given value, don't try to set it again.
* If we have reference, we should not move it.
* If we are assigning referenced variable, we should separate it.
# Hope this covers all... Sigh...

show more ...


# d3617c51 09-Oct-2002 Ilia Alshanetsky

MFZE1 zend_str_tolower issue.


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# ee7b8f90 26-Sep-2002 Ilia Alshanetsky

MFZE1


# 43139dc7 15-Sep-2002 Andi Gutmans

- WS - Always use "if (" and not "if("


Revision tags: RELEASE_0_91
# 44c2c391 09-Sep-2002 Stanislav Malyshev

remove comment


Revision tags: php-4.3.0dev_zend2_alpha3, php-4.2.3
# e8f66546 04-Sep-2002 Stanislav Malyshev

remove dead code


# 36c60cea 04-Sep-2002 Stanislav Malyshev

Fix __call and add some docs


# 2711976f 04-Sep-2002 Sebastian Bergmann

Fix ZTS build.


# d8651c82 04-Sep-2002 Stanislav Malyshev

Support for __get, __set and __call in classes.
This should work as follows: if class hasn't member with given name,
__get/__set is called. If class has no method with given name, __call is c

Support for __get, __set and __call in classes.
This should work as follows: if class hasn't member with given name,
__get/__set is called. If class has no method with given name, __call is called.
__get/__set are not recursive, __call can be.

show more ...


Revision tags: php-4.2.3RC2, php-4.2.3RC1, dev, php-4.2.2, INITIAL_IMPORT_SOURCEFORGE
# 0ed4f6d1 07-Jul-2002 Stanislav Malyshev

name length should be strlen+1


Revision tags: xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2, php-4.3.0dev, php5_5_0, RELEASE_0_90
# 2d6404d5 05-Jun-2002 Andi Gutmans

- Allow overloaded objects to receive the method name in its original
- case.


Revision tags: 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, php-4.2.1RC1
# 7a067547 30-Apr-2002 Stanislav Malyshev

Make OBJCE return zend_class_entry*, also some cleanups


# 6ac6cb10 22-Apr-2002 Harald Radi

added get_class_entry callback handler to the
object handlers structure


Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1, help
# 04ed2b52 10-Mar-2002 Stanislav Malyshev

New stuff for objects API:
- Better assignment handling
- More flexible operations with zval-containing objects


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 ...


1234567891011