3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = json_decode('[ { "zipcode": 35004, "state abbreviation": "AL", "latitude": 33.606379, "longitude": -86.50249, "city": "Moody", "state": "Alabama" }, { "zipcode": 35005, "state abbreviation": "AL", "latitude": 33.606379, "longitude": -86.50249, "city": "Moody", "state": "Alabama" } ]'); $zipcode = 35004; $index = array_search($zipcode, array_column($json, 'zipcode')); print_r($json[$index]);
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.14, 8.4.1
stdClass Object ( [zipcode] => 35004 [state abbreviation] => AL [latitude] => 33.606379 [longitude] => -86.50249 [city] => Moody [state] => Alabama )

preferences:
89.47 ms | 407 KiB | 5 Q