Q. Which PHP function converts JSON to an associative array?
β
Correct Answer: (B)
json_decode($json, true)
Explanation: Passing true returns an associative array.