mysql_fetch_row
从结果集中取得一行作为枚举数组
&mysql.alternative.note;
mysqli_fetch_row
PDOStatement::fetch
with mode as PDO::FETCH_NUM
&reftitle.description;
arraymysql_fetch_row
resourceresult
返回根据所取得的行生成的数组,如果没有更多行则返回 &false;。
mysql_fetch_row
从和指定的结果标识关联的结果集中取得一行数据并作为数组返回。每个结果的列储存在一个数组的单元中,偏移量从 0 开始。
依次调用 mysql_fetch_row
将返回结果集中的下一行,如果没有更多行则返回 &false;。
参见 mysql_fetch_array,mysql_fetch_assoc,mysql_fetch_object,mysql_data_seek,mysql_fetch_lengths 和
mysql_result。
&reftitle.parameters;
&mysql.result.description;
&reftitle.returnvalues;
Returns an numerical array of strings that corresponds to the fetched row, or
&false; if there are no more rows.
mysql_fetch_row fetches one row of data from
the result associated with the specified result identifier. The
row is returned as an array. Each result column is stored in an
array offset, starting at offset 0.
&reftitle.examples;
Fetching one row with mysql_fetch_row
]]>
&reftitle.notes;
&database.fetch-null;
&reftitle.seealso;
mysql_fetch_array
mysql_fetch_assoc
mysql_fetch_object
mysql_data_seek
mysql_fetch_lengths
mysql_result