Objects represent singular instances of a specified class.
To initialize an object instance, use the new keyword:
]]>
If the class has a constructor, simply add your function
arguments to the classname:
]]>
To access object properties, use the '->' specifier:
someprop;
?>]]>
To access object methods, you can also use the '->' specifier:
someprop . "\n
\n";
print $obj->somemethod ();
?>]]>