Corey_M wrote:I can't find any mention of "member of" in the PHP docs.
Because I gave it the most descriptive name I could think of. As I noted, there is no official name for it, as far as I know (possibly not even in C, from which it is indirectly derived... though in C++ we would simply call it operator-> heh).
Corey_M wrote:Does anyone have a direct link (I don't have enough time to read the entire section on OOP) which explains this operator in detail? Thanks very much.
There is nothing much to it. Given an object $x and its member variable m, $x->m allows you access the member variable m of the object $x. If m is a member function instead, then the syntax changes to $x->m(arg), where arg is some argument passed to the member function (or $x->m() if no argument is passed, etc).