Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $ch = curl_init ("");
  2. curl_setopt($ch, CURLOPT_URL, 'http://dicionarioinformal.com.br/aham/');
  3. curl_setopt($ch, CURLOPT_USERAGENT, "Opera/9.80 (J2ME/MIDP; Opera Mini/4.2.14912/870; U; id) Presto/2.4.15");
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  5. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
  6. $html = curl_exec($ch);
  7. $dom = new DOMDocument;
  8. $dom->loadHTML($html);
  9. $xpath = new DOMXPath($dom);
  10. $results = $xpath->query("//*[@class='m-definicao-conteudo']");
  11.  
  12. if ($results->length > 0) {
  13. echo $review = $results->item(0)->nodeValue;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement