Jump to content

mysql_fetch_array VS. mysql_fetch_assoc ...


cwncool

Recommended Posts

I did look both of them up in the php manual before posting here.  The only thing I noticed different, was fetch_array, can fetch any type of array, while fetch_assoc only fetches associative arrays.  I don't know what the different type of arrays mean though. 

 

I guess a better question to ask would have been:

 

What's the difference between a MYSQL_ASSOC and a MYSQL_NUM array?

Link to comment
Share on other sites

mysql_fetch_array fetches both an associative and a numeric array unless you specify otherwise, thus making it a little less efficient then mysql_fetch_assoc if you want to use associative arrays.

 

Associative array allow you to index by name, not number. It makes you code allot more readable.

Link to comment
Share on other sites

I guess I've been using associative arrays all along anyway.

 

Well, if your after associative arrays then mysql_fetch_assoc is slightly more efficient then mysql_fetch_array because that is all it returns.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.