The mysqli_fetch_object() will return the current row result set
as an object where the attributes of the object represent the names of the fields found
within the result set. If no more rows exist in the current result set, NULL is returned.
Return Values
Returns an object that corresponds to the fetched row or NULL if there are no more rows in resultset.
Note: Field names returned by this function
are case-sensitive.
Note: This function sets NULL fields to
PHP NULL value.
ChangeLog
Version
Description
5.0.0
Added the ability to return as a different object.