-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (21 loc) · 763 Bytes
/
index.php
File metadata and controls
26 lines (21 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
require './vendor/autoload.php';
require 'CommentScraper.php';
$sitesConfig = array(
'booking' => array(
'languageURI' => array(
'en' => 'http://www.booking.com/reviews/hr/hotel/waldinger.html?r_lang=en&order=score_desc',
'hr' => 'http://www.booking.com/reviews/hr/hotel/waldinger.html?r_lang=hr&order=score_desc'
),
),
'tripadvisor' => array(
'languageURI' => array(
'en' => 'http://www.tripadvisor.com/Hotel_Review-g303823-d645060-Reviews-Hotel_Waldinger-Osijek_Osijek_Baranja_County_Slavonia.html'
),
)
);
$client = new \Goutte\Client;
$scraper = new \CompressD\CommentScraper($client, $sitesConfig);
$comments = $scraper->getComments();
var_dump($comments);
exit;