I'm trying to understand this line of code:
PHP Code:
$db->setFetchMode(DB_FETCHMODE_OBJECT);
What does
-> means in PHP?
It seems to me that $db, which is the instance of:
PHP Code:
$db = DB::connect($dsn);
has the method called setFetchMode, I'm trying to use PHP.net's APIs, but did not succeed lol...