You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
loadFromFile() does not work, gives the following error:
count(): Parameter must be an array or an object that implements Countable - failed. Retrying...
Code:
$url = 'http://www.ask.com';
$html = new Dom();
$html->loadFromFile($url);
When you run these commands, the console shows the following error:
count(): Parameter must be an array or an object that implements Countable - failed. Retrying...
Also tried the following, with the same error in the console:
$url = 'http://www.ask.com';
$html = new Dom();
$html->load($url);
count(): Parameter must be an array or an object that implements Countable - failed. Retrying...