Advertisement
Guest User

Untitled

a guest
Jan 6th, 2017
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $file = file_get_contents('https://www.googleapis.com/youtube/v3/search?part=snippet&q=Laura%20Dempsey%20Makeup&type=channel&key=AIzaSyDLfPQI-rIjdZrd-9hYWOCahgSkZ0J8lgo');
  2. $arr = json_decode($file, true);
  3. foreach($arr["items"] as $item){
  4. echo $item["id"]["channelId"];
  5. echo "<br>";
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement