$Something is an instance of a class - so like this:

  class Foo
  {
    var $test 

    function echo_test()
    {
      echo $this->test;
    }
  }


  $foo = new Foo;
  $foo->test = 'this';
  $foo->echo_test();

--Joe

On Wed, Jan 24, 2001 at 12:05:17PM -0700, Karl J. Stubsjoen wrote:
> What does -> do?
> As in:
> $Something->then_something_over_here
> 
> 
> -- 
> 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]

-- 

Joe Stump, PHP Hacker
[EMAIL PROTECTED]
http://www.miester.org/


-- 
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