How to get a value from arrays with php

Abaij

I have these data array stored in variable $ids

array(3) {
  [0]=>
  array(1) {
    ["id"]=>
    string(3) "472"
  }
  [1]=>
  array(1) {
    ["id"]=>
    string(3) "475"
  }
  [26]=>
  array(1) {
    ["id"]=>
    string(3) "498"
  }
}

How can I get value of each id? I tried with for loop but it's not working.

for ($i=0; $i < count($ids); $i++){
   echo "ID is " . $ids['id'][$i];
}
mega6382

Try the foreach loop instead:

foreach($ids as $id)
{
   echo "ID is " . $id['id'];
}

Because your keys are are not like 1,2,3...., the for loop won't work, but foreach will.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get the value element [@attributes] with arrays in PHP

From Dev

How to get a specific value from a two dimensional arrays

From Dev

How to get the value from nested array in php

From Dev

How to get integer value from array:php

From Dev

How to get the exact value from the array - php

From Dev

How to get single value from database with php

From Dev

how to get value from php loop to div

From Dev

PHP: How to get a value from a JSON file?

From Dev

How to Get a single Value from php loop

From Dev

How to get a value from PHP to ExtJs?

From Dev

How to get single value from database with php

From Dev

how to get maximum value from array php

From Dev

How to get value from url PHP

From Dev

How to get common values from two different arrays in PHP

From Dev

How to get values from select option of array of arrays in php?

From Dev

How to get unique and most popular values from PHP arrays

From Dev

How to get common values from two different arrays in PHP

From Dev

How to get unique and most popular values from PHP arrays

From Dev

PHP how get new array from two arrays?

From Dev

how to get textbox value from one php to another php

From Dev

Get computed value from two observable arrays

From Dev

Get another key value from multi arrays

From Dev

How to use associate arrays to get the id from the checkbox and appropreate value from the text field

From Dev

How to use associate arrays to get the id from the checkbox and appropreate value from the text field

From Dev

Php Array of arrays get id from name

From Dev

PHP and JS - How to get value from chosen checkbox is checked and enter?

From Dev

In Php, how to get float value from a mixed string?

From Dev

How to get value from php variable into our javascript file?

From Dev

How to get image src attribute value from php string?

Related Related

  1. 1

    How to get the value element [@attributes] with arrays in PHP

  2. 2

    How to get a specific value from a two dimensional arrays

  3. 3

    How to get the value from nested array in php

  4. 4

    How to get integer value from array:php

  5. 5

    How to get the exact value from the array - php

  6. 6

    How to get single value from database with php

  7. 7

    how to get value from php loop to div

  8. 8

    PHP: How to get a value from a JSON file?

  9. 9

    How to Get a single Value from php loop

  10. 10

    How to get a value from PHP to ExtJs?

  11. 11

    How to get single value from database with php

  12. 12

    how to get maximum value from array php

  13. 13

    How to get value from url PHP

  14. 14

    How to get common values from two different arrays in PHP

  15. 15

    How to get values from select option of array of arrays in php?

  16. 16

    How to get unique and most popular values from PHP arrays

  17. 17

    How to get common values from two different arrays in PHP

  18. 18

    How to get unique and most popular values from PHP arrays

  19. 19

    PHP how get new array from two arrays?

  20. 20

    how to get textbox value from one php to another php

  21. 21

    Get computed value from two observable arrays

  22. 22

    Get another key value from multi arrays

  23. 23

    How to use associate arrays to get the id from the checkbox and appropreate value from the text field

  24. 24

    How to use associate arrays to get the id from the checkbox and appropreate value from the text field

  25. 25

    Php Array of arrays get id from name

  26. 26

    PHP and JS - How to get value from chosen checkbox is checked and enter?

  27. 27

    In Php, how to get float value from a mixed string?

  28. 28

    How to get value from php variable into our javascript file?

  29. 29

    How to get image src attribute value from php string?

HotTag

Archive