PHP - File Handling
Given this PHP code:
What will be the output and why?
$json = '{"a":1,"b":2,"a":3}';
$arr = json_decode($json, true);
print_r($arr);What will be the output and why?
