Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. function grabbing($url){
  3.      $data = curl_init();
  4.      curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
  5.      curl_setopt($data, CURLOPT_URL, $url);
  6.      $output = curl_exec($data);
  7.      curl_close($data);
  8.      return $output;
  9. }
  10. $ambilhtml =  grabbing('http://www.bmkg.go.id/BMKG_Pusat/Depan.bmkg');
  11. $filter = explode('<td width="25%" valign="top">', $ambilhtml);
  12. $filterakhir = explode('</div></td>', $filter[4]);
  13. echo $filterakhir[0];
  14. // source : http://h4nk.blogspot.com/2013/05/teknik-grabbing-dengan-curl-php.html
  15. ?>