Публикации - Парсинг сайтов на Laravel

Имплемент для парсинга wikipedia.org

Исходный код имплемента для парсинга wikipedia.org

namespace App\Parser;

use Symfony\Component\DomCrawler\Crawler;
//use App\ProductUser;
//use App\Googlenew;
use Auth;

class WikipediaInfo implements ParseContract
{
    use ParseTrait;
    public $crawler;

    public function __construct()
    {
        set_time_limit(0);
        header('Content-Type: text/html; charset=utf-8');
    }

    public function getParse($country="Belarus")
    {
        $ff = 'https://ru.wikipedia.org/wiki/'.$country;
        $file = file_get_contents($ff);
        $this->crawler = new Crawler($file);
        //$tt = $this->html($this->crawler, '.images_table');
		$body=$this->crawler->filter('body')->html();
		echo $body;
    }
}

Количество комментариев: 0

Для того, чтобы оставить коментарий необходимо зарегистрироваться