Advertisement
Guest User

sfaa

a guest
Apr 16th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <script language=php>
  2.  
  3. function bacaHTML($url){
  4. // inisialisasi CURL
  5. $data = curl_init();
  6. // setting CURL
  7. curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
  8. curl_setopt($data, CURLOPT_URL, $url);
  9. // menjalankan CURL untuk membaca isi file
  10. $hasil = curl_exec($data);
  11. curl_close($data);
  12. return $hasil;
  13. }
  14.  
  15. $kodeHTML = bacaHTML('http://www.ourglocal.com/keywords/');
  16. $pecah = explode('<ul>', $kodeHTML);
  17. $pecahLagi = explode('</ul>', $pecah[1]);
  18.  
  19. echo $pecahLagi[0];
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement