fork download
  1. <?php
  2. $result = '{"time":0.01,"total_rows":7,"rows":[{"id":968},{"id":969},{"id":970},{"id":971},{"id":972},{"id":973},{"id":974}]}';
  3. $json = json_decode($result,true);
  4. $max = max($json["rows"]);
  5. echo $max["id"]; // "974"
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
974