Fwd: About PDO::fetchObject

Octopus Puras <[email protected]> Thu, 11 Jun 2015 13:53:42 +0800
Newsgroups gmane.comp.php.database
Message-ID <CAJtdDJ5VsWeaghWuDVWO9Ecig9fQ3Vg=W8J9sOA-tj0ef1KYSw@mail.gmail.com>
I have a MySQL table, whose name is Items:
ItemID ItemName ItemDescription

I also have a PHP class:
class Item {
  public $id;
  public $name;
  public $description;
}

If I execute $stmt->fetchObject(), I will get an object with fields of
ItemID, ItemName, etc. But I want to adapt the name of the fields to the
Item class. What should I do?