Jump to content

PHP Classes / Objects Question using $this


socalnate

Recommended Posts

I've been attempting to understand classes and objects.  There is one bit of information I'm confused on and that is when you can use $this. 

 

From what I've read I'm assuming you can ONLY use $this to reference variables within the CLASS (brackets) only.  You cannot create an object and then try to call (or echo) a variable within that class using $this.  EX:

 

<?php

$myobject = new foo_object();

echo $this->foo ;

?>

 

Correct way is this:

 

<?php

$myobject = new foo_object();

echo $myobject->foo

?>

 

I am right? 

 

???

Link to comment
https://forums.phpfreaks.com/topic/89815-php-classes-objects-question-using-this/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.