<?php $json = <<<'JSON' [ { "code": "AF", "total": 1 }, { "code": "DZ", "total": 1 }, { "code": "AS", "total": 2 } ] JSON; $array = json_decode($json, true); var_dump(array_column($array, 'total', 'code'));
You have javascript disabled. You will not be able to edit any code.