How to use php mysqli_fetch_all function

藏色散人
Release: 2023-02-22 19:38:01
Original
5553 people have browsed it

php The mysqli_fetch_all function is used to obtain all rows from the result set as an associative array, a numeric array, or both. The syntax is mysqli_fetch_all(result,resulttype), and the parameter result is required.

How to use php mysqli_fetch_all function

php How to use the mysqli_fetch_all function?

Definition and Usage

mysqli_fetch_all() function fetches all rows from the result set as an associative array, a numeric array, or both.

Note:

This function is only available with the MySQL Native Driver.

Syntax

mysqli_fetch_all(result,resulttype);
Copy after login

Parameters

result Required. Specifies the result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result().

resulttype Optional. Specifies what type of array should be produced. Can be one of the following values:

MYSQLI_ASSOC
MYSQLI_NUM
MYSQLI_BOTH
Copy after login

Return value: Returns an associative array or numeric array containing the result rows.

PHP Version: 5.3

Example

Get all rows from the result set as an associative array:

Copy after login

The above is the detailed content of How to use php mysqli_fetch_all function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!