Advertisement
ecchiexploit

Kusonime Scrapper

Nov 24th, 2020
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2. anjay:
  3.     $text = readline("Masukan Judul Anime : ");
  4.     $rep = preg_replace("/ /", "%20", $text);
  5.     $api = file_get_contents("https://arugaz.herokuapp.com/api/kuso?q=$rep");
  6.     $json = json_decode($api, true);
  7.     if ($json['status'] == 200) {
  8.         echo "\n".$json['info']."\n";
  9.         echo "\nSinopsis : ".$json['sinopsis']."\n\n";
  10.         echo "Link Download : \n".$json['link_dl'];
  11.     }
  12.     else {
  13.         echo "Judul Anime Tidak Ditemukan!!\n";
  14.     }
  15.     $back = readline("Cari Kembali (y/n) : ");
  16.     if ($back == "y" || $back == "Y") {
  17.         goto anjay;
  18.     }
  19.     else {
  20.         echo "Terima Kasih Telah Menggunakan Tool Ini ^_^";
  21.     }
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement