a. what does the following line mean $this->bottom(); PHP: b. what does the -> mean. is it an arrow or a less than greater than sign thanks in advance
Hi there, $this is a reference to an object. bottom() is an internal function (a.k.a. method) of that object. The -> symbol is to represent that relationship between the object and its method.