Input
Output
<?php $json = '{"name":"Alice","age":25,"email":"alice@example.com"}'; $data = json_decode($json, true); // true → associative array echo $data["name"]; // Output: Alice ?>