diff --git a/reference/mysqli/mysqli_result.xml b/reference/mysqli/mysqli_result.xml index 338c1391ff..55df463061 100644 --- a/reference/mysqli/mysqli_result.xml +++ b/reference/mysqli/mysqli_result.xml @@ -1,5 +1,5 @@ - + The MySQLi_Result class MySQLi_Result @@ -34,7 +34,7 @@ Methods - + diff --git a/reference/mysqli/mysqli_result/current-field.xml b/reference/mysqli/mysqli_result/current-field.xml index 17b43be681..1ff3628b6c 100644 --- a/reference/mysqli/mysqli_result/current-field.xml +++ b/reference/mysqli/mysqli_result/current-field.xml @@ -1,19 +1,14 @@ - - + + + mysqli_result->current_field mysqli_field_tell - result->current_field Get current field offset of a result pointer &reftitle.description; - Procedural style: - - intmysqli_field_tell - mysqli_resultresult - Object oriented style (property): mysqli_result @@ -21,6 +16,11 @@ intcurrent_field + Procedural style: + + intmysqli_field_tell + mysqli_resultresult + Returns the position of the field cursor used for the last mysqli_fetch_field call. This value can diff --git a/reference/mysqli/mysqli_result/data-seek.xml b/reference/mysqli/mysqli_result/data-seek.xml index 5c64f1a29a..c41179e9e7 100644 --- a/reference/mysqli/mysqli_result/data-seek.xml +++ b/reference/mysqli/mysqli_result/data-seek.xml @@ -1,28 +1,26 @@ - - + + + mysqli_result::data_seek mysqli_data_seek - result->data_seek() Adjusts the result pointer to an arbitary row in the result &reftitle.description; + Object oriented style (method): + + boolmysqli_result::data_seek + intoffset + + Procedural style: boolmysqli_data_seek mysqli_resultresult intoffset - Object oriented style (method): - - mysqli_result - - booldata_seek - intoffset - - The mysqli_data_seek function seeks to an arbitrary result pointer specified by the offset in the diff --git a/reference/mysqli/mysqli_result/fetch-array.xml b/reference/mysqli/mysqli_result/fetch-array.xml index 1dc80e7dfa..cd4331ca85 100644 --- a/reference/mysqli/mysqli_result/fetch-array.xml +++ b/reference/mysqli/mysqli_result/fetch-array.xml @@ -1,28 +1,25 @@ - - + + + mysqli_result::fetch_array mysqli_fetch_array - result->fetch_array() Fetch a result row as an associative, a numeric array, or both &reftitle.description; + Object oriented style (method): + + mixedmysqli_resultfetch_array + intresulttype + Procedural style: mixedmysqli_fetch_array mysqli_resultresult intresulttype - Object oriented style (method): - - mysqli_result - - mixedfetch_array - intresulttype - - Returns an array that corresponds to the fetched row or &null; if there are no more rows for the resultset represented by the diff --git a/reference/mysqli/mysqli_result/fetch-assoc.xml b/reference/mysqli/mysqli_result/fetch-assoc.xml index 2de9e1835d..964c1a43af 100644 --- a/reference/mysqli/mysqli_result/fetch-assoc.xml +++ b/reference/mysqli/mysqli_result/fetch-assoc.xml @@ -1,27 +1,24 @@ - - + + + mysqli_result::fetch_assoc mysqli_fetch_assoc - mysqli->fetch_assoc() Fetch a result row as an associative array &reftitle.description; + Object oriented style (method): + + arraymysqli_result::fetch_assoc + + Procedural style: arraymysqli_fetch_assoc mysqli_resultresult - Object oriented style (method): - - mysqli_result - - arrayfetch_assoc - - - Returns an associative array that corresponds to the fetched row or &null; if there are no more rows. diff --git a/reference/mysqli/mysqli_result/fetch-field-direct.xml b/reference/mysqli/mysqli_result/fetch-field-direct.xml index 5c175502a6..4cee6ae6b1 100644 --- a/reference/mysqli/mysqli_result/fetch-field-direct.xml +++ b/reference/mysqli/mysqli_result/fetch-field-direct.xml @@ -1,28 +1,25 @@ - - + + + mysqli_result::fetch_field_direct mysqli_fetch_field_direct - result->fetch_field_direct() Fetch meta-data for a single field &reftitle.description; + Object oriented style (method): + + objectmysqli_result::fetch_field_direct + intfieldnr + Procedural style: objectmysqli_fetch_field_direct mysqli_resultresult intfieldnr - Object oriented style (method): - - mysqli_result - - objectfetch_field_direct - intfieldnr - - Returns an object which contains field definition informations from specified resultset. diff --git a/reference/mysqli/mysqli_result/fetch-field.xml b/reference/mysqli/mysqli_result/fetch-field.xml index e0a820e0e5..b611a7a26c 100644 --- a/reference/mysqli/mysqli_result/fetch-field.xml +++ b/reference/mysqli/mysqli_result/fetch-field.xml @@ -1,27 +1,24 @@ - - + + + mysqli_result::fetch_field mysqli_fetch_field - result->fetch_field() Returns the next field in the result set &reftitle.description; + Object oriented style (method): + + objectmysqli_result::fetch_field + + Procedural style: objectmysqli_fetch_field mysqli_resultresult - Object oriented style (method): - - mysqli_result - - objectfetch_field - - - Returns the definition of one column of a result set as an object. Call this function repeatedly to retrieve information about all columns in the diff --git a/reference/mysqli/mysqli_result/fetch-fields.xml b/reference/mysqli/mysqli_result/fetch-fields.xml index dd4bb12dd5..4ccb3d98db 100644 --- a/reference/mysqli/mysqli_result/fetch-fields.xml +++ b/reference/mysqli/mysqli_result/fetch-fields.xml @@ -1,27 +1,25 @@ - - + + + mysqli_result::fetch_fields mysqli_fetch_fields - result->fetch_fields() Returns an array of objects representing the fields in a result set &reftitle.description; + Object oriented style (method): + + arraymysqli_result::fetch_fields + + Procedural Style: arraymysqli_fetch_fields mysqli_resultresult - Object oriented style (method): - - mysqli_result - - arrayfetch_fields - - - + This function serves an identical purpose to the mysqli_fetch_field function with the single diff --git a/reference/mysqli/mysqli_result/fetch-object.xml b/reference/mysqli/mysqli_result/fetch-object.xml index 40626c958e..7faf4a7c56 100644 --- a/reference/mysqli/mysqli_result/fetch-object.xml +++ b/reference/mysqli/mysqli_result/fetch-object.xml @@ -1,14 +1,20 @@ - - + + + mysqli_result::fetch_object mysqli_fetch_object - result->fetch_object() Returns the current row of a result set as an object &reftitle.description; + Object oriented style (method): + + objectmysqli_result::fetch_object + stringclass_name + arrayparams + Procedural style: objectmysqli_fetch_object @@ -16,15 +22,6 @@ stringclass_name arrayparams - Object oriented style (method): - - mysqli_result - - objectfetch_object - stringclass_name - arrayparams - - The mysqli_fetch_object will return the current row result set as an object where the attributes of the object represent the diff --git a/reference/mysqli/mysqli_result/fetch-row.xml b/reference/mysqli/mysqli_result/fetch-row.xml index 91b07fe21e..1651a82147 100644 --- a/reference/mysqli/mysqli_result/fetch-row.xml +++ b/reference/mysqli/mysqli_result/fetch-row.xml @@ -1,27 +1,24 @@ - - + + + mysqli_result::fetch_row mysqli_fetch_row - result->fetch_row() Get a result row as an enumerated array &reftitle.description; + Object oriented style (method): + + mixedmysqli_result::fetch_row + + Procedural style: mixedmysqli_fetch_row mysqli_resultresult - Object oriented style (method): - - mysqli_result - - mixedfetch_row - - - Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). diff --git a/reference/mysqli/mysqli_result/field-count.xml b/reference/mysqli/mysqli_result/field-count.xml index b791a0163b..2db4104a0d 100644 --- a/reference/mysqli/mysqli_result/field-count.xml +++ b/reference/mysqli/mysqli_result/field-count.xml @@ -1,24 +1,24 @@ - - + + + mysqli_result->field_count mysqli_num_fields - result->field_count Get the number of fields in a result &reftitle.description; - Procedural style: - - intmysqli_num_fields - mysqli_resultresult - Object oriented style (property): mysqli_result intfield_count + Procedural style: + + intmysqli_num_fields + mysqli_resultresult + Returns the number of fields from specified result set. diff --git a/reference/mysqli/mysqli_result/field-seek.xml b/reference/mysqli/mysqli_result/field-seek.xml index 10d54d0e11..b25b8a4c9a 100644 --- a/reference/mysqli/mysqli_result/field-seek.xml +++ b/reference/mysqli/mysqli_result/field-seek.xml @@ -1,28 +1,25 @@ - - + + + mysqli_result::field_seek mysqli_field_seek - result->field_seek() Set result pointer to a specified field offset &reftitle.description; + Object oriented style (method): + + boolmysqli_result::field_seek + intfieldnr + Procedural style: boolmysqli_field_seek mysqli_resultresult intfieldnr - Object oriented style (method): - - mysqli_result - - boolfield_seek - intfieldnr - - Sets the field cursor to the given offset. The next call to mysqli_fetch_field will retrieve the field definition diff --git a/reference/mysqli/mysqli_result/free.xml b/reference/mysqli/mysqli_result/free.xml index 5cb0b7222f..e61f1ca371 100644 --- a/reference/mysqli/mysqli_result/free.xml +++ b/reference/mysqli/mysqli_result/free.xml @@ -1,35 +1,33 @@ - - + + + mysqli_result::free mysqli_free_result - result->free() Frees the memory associated with a result &reftitle.description; + Object oriented style (all methods are equivalent): + + voidmysqli_result::free + + + + voidmysqli_result::close + + + + voidmysqli_result::free_result + + + Procedural style: voidmysqli_free_result mysqli_resultresult - Object oriented style (all methods are equivalent): - - mysqli_result - - voidfree - - - - voidclose - - - - voidfree_result - - - Frees the memory associated with the result. diff --git a/reference/mysqli/mysqli_result/lengths.xml b/reference/mysqli/mysqli_result/lengths.xml index f6f6d17d26..516befefbb 100644 --- a/reference/mysqli/mysqli_result/lengths.xml +++ b/reference/mysqli/mysqli_result/lengths.xml @@ -1,24 +1,24 @@ - - + + + mysqli_result->lengths mysqli_fetch_lengths - result->lengths() Returns the lengths of the columns of the current row in the result set &reftitle.description; - Procedural style: - - arraymysqli_fetch_lengths - mysqli_resultresult - Object oriented style (property): mysqli_result arraylengths + Procedural style: + + arraymysqli_fetch_lengths + mysqli_resultresult + The mysqli_fetch_lengths function returns an array containing the lengths of every column of the current row within the result diff --git a/reference/mysqli/mysqli_result/num-rows.xml b/reference/mysqli/mysqli_result/num-rows.xml index 049492ea0d..7f9bdf2a4b 100644 --- a/reference/mysqli/mysqli_result/num-rows.xml +++ b/reference/mysqli/mysqli_result/num-rows.xml @@ -1,24 +1,24 @@ - - + + + mysqli_result->num_rows mysqli_num_rows - result->num_rows Gets the number of rows in a result &reftitle.description; - Procedural style: - - intmysqli_num_rows - mysqli_resultresult - Object oriented style (property): mysqli_result intnum_rows + Procedural style: + + intmysqli_num_rows + mysqli_resultresult + Returns the number of rows in the result set.