What does the -> do in this statement?
$this->obj['variable']
Basically what I am asking is, what does -> do in statements? not just this one, I am just looking for the description of ->. Thanks
http://www.php.net/manual/en/language.oop.php
instead of posting 200 pages couldnt u just briefly tell me 😉
-> is used to access an object's internal data or methods. $this represents the current object when inside of one it's methods.
alright thanks