|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-07-24 10:28 UTC] zeev at cvs dot php dot net
[1999-07-27 13:42 UTC] andi at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 18:00:01 2025 UTC |
class MyClass { Function MyFunc( $this_item ) { } } class AnotherClass { Function AnotherClass() { } } // Works under php3 $this_obj = new MyClass(); $this_obj->Add( new AnotherClass() ); // New code for php4 $this_obj->Add( $tmp_obj = new AnotherClass() );