diff options
Diffstat (limited to 'scraper/google.php')
-rw-r--r-- | scraper/google.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scraper/google.php b/scraper/google.php index bf2b0e4..022f730 100644 --- a/scraper/google.php +++ b/scraper/google.php @@ -599,6 +599,7 @@ class google{ $params = [ "q" => $search, + "hl" => "en", "num" => 20 // get 20 results ]; @@ -700,6 +701,7 @@ class google{ $params = [ "q" => $search, "tbm" => "vid", + "hl" => "en", "num" => "20" ]; @@ -850,6 +852,7 @@ class google{ $params = [ "q" => $search, "tbm" => "nws", + "hl" => "en", "num" => "20" ]; |