| 
 | PDOStatement::fetchObjectFetches the next row and returns it as an object. Description
   public mixed PDOStatement::fetchObject
    ([ string  $class_name= "stdClass"
   [, array$ctor_args]] )
   Fetches the next row and returns it as an object. This function is an
   alternative to PDOStatement::fetch with
    When an object is fetched, its properties are assigned from respective column values, and afterwards its constructor is invoked. Parameters
 
 Return Values
   Returns an instance of the required class with property names that
   correspond to the column names  or  See Also
 
 |