Tags
PHP
Asked 2 years ago
18 May 2021
Views 261
iptracker

iptracker posted

which one is best Mysqli_fetch_assoc or Mysqli_fetch_array ?

which one is best on the base of performance in between Mysqli_fetch_assoc or Mysqli_fetch_array ?
ching

ching
answered Nov 30 '-1 00:00

Mysqli_fetch_assoc
-- Returns an associative array of strings representing the fetched row

Mysqli_fetch_array
-- Returns an array of strings that corresponds to the fetched row
it means it return two value for same field

so Mysqli_fetch_assoc is good for good performance.
Post Answer