PHP Array Exercises : Decodes a JSON string
PHP Array: Exercise-6 with Solution
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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php-exercises/php-array-exercise-6.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics