diff --git a/reference/pdo/functions/PDOStatement-fetchObject.xml b/reference/pdo/functions/PDOStatement-fetchObject.xml new file mode 100644 index 0000000000..72f8a27b58 --- /dev/null +++ b/reference/pdo/functions/PDOStatement-fetchObject.xml @@ -0,0 +1,87 @@ + + + + + + PDOStatement::fetchObject + Fetches the next row and returns it as an object. + + + &reftitle.description; + + mixedPDOStatement::fetchObject + stringclass_name + arrayctor_args + + + + Fetches the next row and returns it as an object. This function is an + alternative to PDOStatement::fetch with + PDO::FETCH_CLASS or + PDO::FETCH_OBJ style. + + + + + &reftitle.parameters; + + + + class_name + + + Name of the created class, defaults to stdClass. + + + + + ctor_args + + + Elements of this array are passed to the constructor. + + + + + + + + &reftitle.returnvalues; + + Returns an instance of the required class with property names that + correspond to the column names or &false; in case of an error. + + + + + &reftitle.seealso; + + + PDOStatement::fetch + + + + + + + +