Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Download MKBHD wallpapers
- // @john011235
- error_reporting(E_ERROR | E_PARSE);
- if (!file_exists('./mkbhd_walls/')) {
- mkdir('./mkbhd_walls', 0777, true);
- }
- $walls = file_get_contents('https://storage.googleapis.com/panels-api/data/20240916/media-1a-i-p~s');
- $decoded_json = json_decode($walls, false);
- $wallpapers = $decoded_json->data;
- $i = 0;
- foreach($wallpapers as $wallpaper)
- {
- if ($wallpaper->dhd == "") continue;
- $url = $wallpaper->dhd;
- $image = file_get_contents($url);
- file_put_contents("./mkbhd_walls/wall_$i.jpg", $image);
- $i++;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement