diff --git a/reference/mysql/functions/mysql-fetch-array.xml b/reference/mysql/functions/mysql-fetch-array.xml index 3638dce674..f4c5938d07 100644 --- a/reference/mysql/functions/mysql-fetch-array.xml +++ b/reference/mysql/functions/mysql-fetch-array.xml @@ -1,5 +1,5 @@ - + mysql_fetch_array @@ -42,7 +42,7 @@ &reftitle.returnvalues; - Returns an array that corresponds to the fetched row, or &false; + Returns an array of strings that corresponds to the fetched row, or &false; if there are no more rows. The type of returned array depends on how result_type is defined. By using MYSQL_BOTH (default), you'll get an array with both diff --git a/reference/mysql/functions/mysql-fetch-assoc.xml b/reference/mysql/functions/mysql-fetch-assoc.xml index 724ef1179f..ddcaa01fba 100644 --- a/reference/mysql/functions/mysql-fetch-assoc.xml +++ b/reference/mysql/functions/mysql-fetch-assoc.xml @@ -1,5 +1,5 @@ - + mysql_fetch_assoc @@ -33,7 +33,7 @@ &reftitle.returnvalues; - Returns an associative array that corresponds to the fetched row, or + Returns an associative array of strings that corresponds to the fetched row, or &false; if there are no more rows. diff --git a/reference/mysql/functions/mysql-fetch-object.xml b/reference/mysql/functions/mysql-fetch-object.xml index 5cc4cb85aa..6433f54b92 100644 --- a/reference/mysql/functions/mysql-fetch-object.xml +++ b/reference/mysql/functions/mysql-fetch-object.xml @@ -1,5 +1,5 @@ - + mysql_fetch_object @@ -50,7 +50,7 @@ &reftitle.returnvalues; - Returns an object with properties that correspond to the + Returns an object with string properties that correspond to the fetched row, or &false; if there are no more rows. diff --git a/reference/mysql/functions/mysql-fetch-row.xml b/reference/mysql/functions/mysql-fetch-row.xml index 25dcce3c55..880994ed7e 100644 --- a/reference/mysql/functions/mysql-fetch-row.xml +++ b/reference/mysql/functions/mysql-fetch-row.xml @@ -1,5 +1,5 @@ - + mysql_fetch_row @@ -30,7 +30,7 @@ &reftitle.returnvalues; - Returns an numerical array that corresponds to the fetched row, or + Returns an numerical array of strings that corresponds to the fetched row, or &false; if there are no more rows. diff --git a/reference/mysqli/functions/mysqli-fetch-array.xml b/reference/mysqli/functions/mysqli-fetch-array.xml index 0c010889ce..118543638b 100644 --- a/reference/mysqli/functions/mysqli-fetch-array.xml +++ b/reference/mysqli/functions/mysqli-fetch-array.xml @@ -1,5 +1,5 @@ - + mysqli_fetch_array @@ -77,7 +77,7 @@ &reftitle.returnvalues; - Returns an array that corresponds to the fetched row or &null; if there + Returns an array of strnigs that corresponds to the fetched row or &null; if there are no more rows in resultset. diff --git a/reference/mysqli/functions/mysqli-fetch-assoc.xml b/reference/mysqli/functions/mysqli-fetch-assoc.xml index c85b943e7a..9c08837cb3 100644 --- a/reference/mysqli/functions/mysqli-fetch-assoc.xml +++ b/reference/mysqli/functions/mysqli-fetch-assoc.xml @@ -1,5 +1,5 @@ - + mysqli_fetch_assoc @@ -42,7 +42,7 @@ &reftitle.returnvalues; - Returns an associative array representing the fetched row in the result + Returns an associative array of strnigs representing the fetched row in the result set, where each key in the array represents the name of one of the result set's columns or &null; if there are no more rows in resultset. diff --git a/reference/mysqli/functions/mysqli-fetch-object.xml b/reference/mysqli/functions/mysqli-fetch-object.xml index 3bc1d7efda..b774149203 100644 --- a/reference/mysqli/functions/mysqli-fetch-object.xml +++ b/reference/mysqli/functions/mysqli-fetch-object.xml @@ -1,5 +1,5 @@ - + mysqli_fetch_object @@ -58,7 +58,8 @@ &reftitle.returnvalues; - Returns an object that corresponds to the fetched row or &null; if there are no more rows in resultset. + Returns an object with string properties that corresponds to the fetched + row or &null; if there are no more rows in resultset. &database.field-case; &database.fetch-null; diff --git a/reference/mysqli/functions/mysqli-fetch-row.xml b/reference/mysqli/functions/mysqli-fetch-row.xml index 42c3b507eb..0df011be6c 100644 --- a/reference/mysqli/functions/mysqli-fetch-row.xml +++ b/reference/mysqli/functions/mysqli-fetch-row.xml @@ -1,5 +1,5 @@ - + mysqli_fetch_row @@ -42,7 +42,7 @@ &reftitle.returnvalues; - mysqli_fetch_row returns an array that corresponds to the fetched row + mysqli_fetch_row returns an array of strnigs that corresponds to the fetched row or &null; if there are no more rows in result set. &database.fetch-null;