Exemplo n.º 1
0
 public function process_post($url)
 {
     $html = parent::get_html($url);
     $article = $html->getElementsByTagName("article");
     $this->title[] = $article->item(0)->childNodes->item(0)->childNodes->item(0)->nodeValue;
     $this->post_date[] = $article->item(0)->childNodes->item(0)->childNodes->item(2)->childNodes->item(0)->childNodes->item(2)->childNodes->item(1)->nodeValue;
     $text = $article->item(0)->childNodes->item(1)->C14N();
     $start_pos = strpos($text, '</script></span>');
     $my_post = strpos($text, '<plusone') - $start_pos - 880;
     $this->body[] = substr($text, $start_pos, $my_post);
 }