On Monday 05 February 2001 15:52, Stephen Maher wrote:
> Hi,
> 
> Can someone advise on the following.
> 
> class class_y
> {
>     function test() {
>         return "test";
>         }
> }
> 
> class  class_x
> {
>     function x {
>         $n = new $y;
>         }
> 
>     function z {
>         $n->test();
>         }
> }
> 
> I need the object of class_y available to the other objects of classx
> but I cant figure out how I do this. Any ideas?

class class_x
{
     function x { 
         $this->n = new $y; 
         } 
  
     function z { 
         $this->n->test(); 
         } 

     var n;
} 


-- 
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)

The most exciting phrase to hear in science, the one that heralds new
discoveries, is not "Eureka", but "That's funny..."

- Isaac Asimov

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to