fork download
  1. <?php
  2.  
  3. $test = array(
  4. 'id' => 1,
  5. 'name' => 'Диски Sparco',
  6. 'price' => 5000,
  7. ),
  8. 'id' => 1,
  9. 'name' => 'Диски Sparco',
  10. 'price' => 6000,
  11. ),
  12. 'id' => 2,
  13. 'name' => 'Автокресло',
  14. 'price' => 3000,
  15. ),
  16. );
  17.  
  18. foreach (array_unique(array_column($test, 'id')) as $id) {
  19. var_dump($id);
  20. }
  21.  
Success #stdin #stdout 0.02s 25392KB
stdin
Standard input is empty
stdout
int(1)
int(2)