return Empty array
Author: aroon9002ahmedCreated Feb 17, 2023Updated Feb 17, 2023
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
Source: FriendsOfPHP/Goutte