Norbert Wenzel wrote:
I don't know if this works in PHP4, but I would suggest to clear this in
your constructur. But I don't know if this is always called in PHP4.
class myClass {
var $object;
myClass() {
$this->object = new OtherObject();
}
}
This isn't really forced, since you could change $object from outside
the class. If there is a way you should declare $object private. That's
not stylish, but I guess it works.
I think PHP5 deals with private/public variables and all that gaff.
PHP4 doesn't quite offer OO that well, but good enough if you strictly
use your Class message interfaces!
Thanks for the help Norbert. You're right - that would pretty much do
the trick.
Alex
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php