mysql fetch assoc VS mysql fetch array

后端 未结 10 1880
太阳男子
太阳男子 2020-12-10 04:10

Below are two methods commonly used in most php codes for fetch mysql data .

  1. mysql_fetch_array()
  2. mysql_fetch_assoc()
  3. <
10条回答
  •  情书的邮戳
    2020-12-10 04:51

    This Is the result of mysql_fetch_array()

    $row['fieldname'] = 'some value';
    

    or

    $row[0] = some value';
    

    This Is the result of mysql_fetch_assoc() will only return

    $row['fieldname'] = 'some value';
    

提交回复
热议问题