You can group a set of variables and functions together in PHP as an object.
object->variable = 'abc';
means for this object, set the variable to 'abc'; Vars like this are often called properties.
object->Run();
means for this object, run the function Run(). Functions like this are often called methods.
Read the php.net/manual for more details.
Regards, John