Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does this PHP syntax mean: $var1->$var2
Reference - What does this symbol mean in PHP?

I'm looking at a php framework's code, and now and then the symbols "->" appear... for example:

$controller->permissionCheck($ret);

So what I would like was that someone could explain to me what "->" stands for and what is used to?

Thank you.

share|improve this question

marked as duplicate by Michael Berkowski, jeroen, Quentin, Neal, watcher May 14 '12 at 14:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 0 down vote accepted

In your example, $controller is a PHP object created somewhere, and permissionCheck is a function defined in that object that is being called with the variable $ret being passed to it. Check this : Reference - What does this symbol mean in PHP?

share|improve this answer
so I'm setting a value to permissionCheck($ret) that is given by $controller ? so, basically, it's a more elaborated way to assign a value to permissionCheck($ret) ? – Bruno May 22 '12 at 23:10
Possibly, but not necessarily. Controller is an object, and contained within it is a function called permission check. That function could contain a dozen calls to a database that are also in that object , or a call to an opened API. So, in short, you're not assigning a value to anything - you are passing a value to a function. – GDP May 23 '12 at 3:29

It's used to address a function or property of a class. In this case a function of the controller class seems to be called.

share|improve this answer

operator -> for accessing to non-static members of $controller object. In your case member is function permissionCheck

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.