mysqli_result::fetch_object
mysqli_fetch_object
Fetch the next row of a result set as an object
&reftitle.description;
&style.oop;
public objectnullfalsemysqli_result::fetch_object
stringclass"stdClass"
arrayconstructor_args[]
&style.procedural;
objectnullfalsemysqli_fetch_object
mysqli_resultresult
stringclass"stdClass"
arrayconstructor_args[]
Fetches one row of data from the result set and returns it as an object,
where each property represents the name of the result set's column.
Each subsequent call to this function will return the next row within the
result set, or &null; if there are no more rows.
If two or more columns of the result have the same name, the last
column will take precedence and overwrite any previous data. To
access multiple columns with the same name,
mysqli_fetch_row may be used to fetch the numerically
indexed array, or aliases may be used in the SQL query select list to give
columns different names.
This function sets the properties
of the object before calling the object constructor.
&database.field-case;
&database.fetch-null;
&reftitle.parameters;
&mysqli.result.description;
class
The name of the class to instantiate, set the properties of and return.
If not specified, a stdClass object is returned.
constructor_args
An optional array of parameters to pass to the constructor
for class objects.
&reftitle.returnvalues;
Returns an object representing the fetched row, where each property
represents the name of the result set's column, &null; if there
are no more rows in the result set, &return.falseforfailure;.
&reftitle.errors;
A ValueError is thrown when
the constructor_args is non-empty with the class not having constructor.
&reftitle.changelog;
&Version;
&Description;
8.3.0
Now throws a ValueError exception when
the constructor_args is non-empty with the class not having constructor;
previously an Exception was thrown.
8.0.0
constructor_args now accepts [] for constructors with 0 parameters;
previously an exception was thrown.
&reftitle.examples;
mysqli_result::fetch_object example
&style.oop;
query($query);
while ($obj = $result->fetch_object()) {
printf("%s (%s)\n", $obj->Name, $obj->CountryCode);
}
]]>
&style.procedural;
Name, $obj->CountryCode);
}
]]>
&examples.outputs.similar;
&reftitle.seealso;
mysqli_fetch_array
mysqli_fetch_assoc
mysqli_fetch_column
mysqli_fetch_row
mysqli_query
mysqli_data_seek