PHP Array Exercises : Decodes a JSON string
Write a PHP script which decodes the following JSON string.
Sample JSON code :
{"Title": "The Cuckoos Calling",
"Author": "Robert Galbraith",
"Detail": {
"Publisher": "Little Brown"
}}
Sample Solution:
PHP Code:
<?php
// Define a function named w3rfunction that echoes the key and value of an array element
function w3rfunction($value, $key) {
echo "$key : $value" . "\n";
}
// Define a JSON-encoded string representing a nested associative array
$a = '{"Title": "The Cuckoos Calling",
"Author": "Robert Galbraith",
"Detail": {
"Publisher": "Little Brown"
}
}';
// Decode the JSON string into a PHP associative array
$j1 = json_decode($a, true);
// Use array_walk_recursive to apply the w3rfunction to each element in the nested array
array_walk_recursive($j1, "w3rfunction");
?>
Output:
Title : The Cuckoos Calling Author : Robert Galbraith Publisher : Little Brown
Flowchart:
![Flowchart: Decodes a JSON string](https://www.w3resource.com/w3r_images/php-array-exercise-6.png)
PHP Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a PHP script to get the first element of the specified array.
Next: Write a PHP script that inserts a new item in an array in any position.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics