This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Read json and display title of track using php. This will print the item on your page. I use this in a shortcode via a shortcode plugin. | |
| <?php | |
| json_string = 'https://api.acrcloud.com/v1/monitor-streams/s-bVX73QK/results?access_key=4709cb1d4bf05a8e782034797xxxxxxx'; | |
| $jsondata = file_get_contents($json_string); | |
| $obj = json_decode($jsondata,true); | |
| print_r($obj[0]['metadata']['music'][0]['title']); | |
| ?> | |
| //Read json and display artist of track using php. This will print the item on your page. I use this in a shortcode via a shortcode plugin. |