#
6d8a643e |
| 18-Nov-2002 |
Andi Gutmans |
- MFZE1 |
#
ce06e7ba |
| 16-Nov-2002 |
Andi Gutmans |
- MFZE1 |
#
e1725b26 |
| 16-Nov-2002 |
Andi Gutmans |
- MFZE1 |
Revision tags: BEFORE_RENAMING, php-4.3.0RC1 |
|
#
78bf1d9a |
| 05-Nov-2002 |
Ilia Alshanetsky |
MFZE1 |
#
983be5c7 |
| 05-Nov-2002 |
Andi Gutmans |
- ATTENTION: Finally nuke old_function and cfunction. I think it is time - to get rid of these BC notations. This is from the days of the move from - PHP/FI 2 -> PHP 3 |
#
7936a861 |
| 02-Nov-2002 |
Ilia Alshanetsky |
MFZE1 |
#
fee4ba4f |
| 02-Nov-2002 |
Derick Rethans |
- Fix segfault when __CLASS__ was used outside a class definition |
#
d704357e |
| 02-Nov-2002 |
Ilia Alshanetsky |
MFZE1 (20214). |
Revision tags: php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1, MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003, RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2, php-4.2.3RC1 |
|
#
0bb780b3 |
| 15-Aug-2002 |
Zeev Suraski |
MFZE1 |
#
52406cb3 |
| 08-Aug-2002 |
Andi Gutmans |
- Make new 'is' operator work with classes only and return false when - the object isn't of the said class or the value isn't an object. |
Revision tags: dev |
|
#
82c72f27 |
| 30-Jul-2002 |
Andrei Zmievski |
@- Adding 'is' operator that can be used to check the type of a variable, @ or its class. (Andrei) |
Revision tags: php-4.2.2 |
|
#
3be1dd46 |
| 16-Jul-2002 |
Andi Gutmans |
- Syntactic sugar - Add "public" as a synonym for "var". - Now we have the three P's. You can do: <? class MyClass { public $a; pr
- Syntactic sugar - Add "public" as a synonym for "var". - Now we have the three P's. You can do: <? class MyClass { public $a; private $b; protected $c; } ?>
show more ...
|
#
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 ...
|
#
7b68f510 |
| 14-Jul-2002 |
Andi Gutmans |
- Nuke delete(). It was a big mistake to introduce it and I finally - understand why Java didn't do so. - If you still want to control destruction of your object then either make - sure y
- Nuke delete(). It was a big mistake to introduce it and I finally - understand why Java didn't do so. - If you still want to control destruction of your object then either make - sure you kill all references or create a destruction method which you - call yourself.
show more ...
|
Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2, php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, 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, php-4.2.0, php-4.2.0RC4, php-4.2.0RC3 |
|
#
3eafd220 |
| 10-Apr-2002 |
foobar |
MFZE1 |
#
60ccb411 |
| 10-Apr-2002 |
foobar |
MFZE1 |
Revision tags: 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 |
|
#
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 ...
|
Revision tags: BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH |
|
#
62dc854b |
| 06-Jan-2002 |
Sebastian Bergmann |
Happy New Year. |
Revision tags: php-4.1.1 |
|
#
43617d0d |
| 18-Dec-2001 |
Zeev Suraski |
MFZE1 |
Revision tags: PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog |
|
#
d863d52a |
| 11-Dec-2001 |
Sebastian Bergmann |
Update headers. |
Revision tags: php-4.1.0, php-4.1.0RC5, php-4.1.0RC4, php-4.1.0RC3, php-4.1.0RC2, 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 |