FriendsOfPHP / Goutte

Goutte, a simple PHP Web Scraper
MIT License
9.26k stars 1.01k forks source link

return Empty array #477

Open aroon9002ahmed opened 1 year ago

aroon9002ahmed commented 1 year ago

i have test in local is working but when i uploaded on website return me empty array !! here is my test code:

$crawler = Goutte::request('GET', 'https://duckduckgo.com/html/?q=Laravel');
        $crawler->filter('.result__title .result__a')->each(function ($node) {
          dd($node->text());
        });

is there a special requirement on server?

Laravel Framework 9.52.0 PHP 8.1.15