Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4608992
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:55:25+00:00 2026-05-22T00:55:25+00:00

Why does the operator $array[‘country’][] return what logically would be $array[][‘country’] ? What I

  • 0

Why does the operator

$array['country'][] return what logically would be $array[]['country']?

What I am saying is this. If you want to extract from a MySQL array, the value of [‘country’] for every row, [1],[2]…[n], you have to use

$array['country'][]

despite fact that they are ordered as

$array['row#']['country']

Is this because PHP is reading something backwards, or because I am just lacking some fundamental array information?

FULL-ish code here

$result = array();
foreach($data as $value){

   $array['country'][] = $value['country'];
   $array['report'][] = $value['report'];
}
$data = $array;

Let me know if I am just dumb… I can’t really grasp why this is working this way.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:55:25+00:00Added an answer on May 22, 2026 at 12:55 am

    Why does the operator

    $array[‘country’][]

    return what
    logically would be
    $array[][‘country’]?

    It is because you are constructing the array in that way:

    If you use $array['country'][] = $value['country'];, you are adding a new value to the sub-array which is part of the containing array under the country key. So it will be mapped to $array['country'][], you cannot expect otherwise.

    If you want it to map to array[]['country'], then (using part of code from
    @Lawrence’s answer), you’d have to add the new values using explicit numerical indexes as the key:

    SELECT country,report from yourdb
    $i=0;
    while ($row = mysql_fetch_array($result)) {
      $array[$i]['country'][] = $row['country'];
      $array[$i]['report'][] = $row['report'];
      $i++;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

why does void operator<<(ostream out, Test &t); return an error whereas void operator<<(ostream &out,
Why does the sizeof operator return a size larger for a structure than the
Why does the in operator in Javascript return true when testing if 0 exists
This may be a stupid question but how does the sizeof operator know the
Why does this code crash the program when I run it ostream& operator<<(ostream& cout,
In this post https://codereview.stackexchange.com/questions/5745/dynamic-array-improvements-0 What does this mean? Sorry if the question is vague..I
What are all the other things the new operator does other than allocating memory
Why is it that ~2 is equal to -3? How does ~ operator work?
How does the comma operator work in C++? For instance, if I do: a
Why does the new operator exist in modern languages such as C# and Java?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.