Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $json =
- '
- {
- "Albums":
- [
- {
- "Title": "Aqualung",
- "Artist": "Jethro Tull"
- },
- {
- "Title": "Thick as a Brick",
- "Artist": "Jethro Tull"
- }
- ]
- }
- ';
- $jsonData = json_decode($json);
- foreach ($jsonData->Albums as $album)
- {
- echo 'Album title: ' . $album->Title . '<br>';
- echo 'Album artist: ' . $album->Artist . '<br>';
- echo '<br>';
- }
Add Comment
Please, Sign In to add comment