Difference between mysql_fetch_array and mysql_fetch_row?

前端 未结 10 1385
野的像风
野的像风 2020-12-02 08:36

This is a simple question for PHP users. The reason I couldn\'t get the the exact difference between mysql_fetch_array() and mysql_fetch_row() in P

10条回答
  •  悲&欢浪女
    2020-12-02 09:18

    Fetch row returns a numerical array for current entry

    http://www.php.net/manual/en/function.mysql-fetch-row.php

    Fetch array will by default return a full id=>key=>value array but it also offers the option of choosing either numerical or associative return

    http://www.php.net/manual/en/function.mysql-fetch-array.php

提交回复
热议问题