fork download
  1. <?php
  2.  
  3. $json = '[{
  4. "pos": 1,
  5. "uid": "44420575",
  6. "rating": "14130271"
  7. }, {
  8. "pos": 2,
  9. "uid": "24055142",
  10. "rating": "1657068"
  11. }, {
  12. "pos": 3,
  13. "uid": "29846213",
  14. "rating": "1592081"
  15. }]';
  16. $a = json_decode($json, TRUE);
  17.  
  18. $segment = array_shift(array_filter($a, function($v){return $v['uid'] === '24055142';}));
  19. echo $segment['rating'];
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
1657068