Posted by Jonas Werres on 01/02/08 08:22
> Are you talking about object oriented programming? Sure. class LinearList { private $next; private $content; public getNext() { return $this->next; } public next(LinearList $next) { $this->next=$next; } public __toString() { return $this->content; } .... }
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming