Using the below code results in parsing all of the anchors on the given url
HTML:
foreach($html->find(a[id=0]) as $e)
echo $e->plaintext . '
';
...However, using
foreach($html->find(a[id=1]) as $e)
echo $e->plaintext . '
';
works perfectly...
It appears that if an ID="0" it will not function as intended. Is there a workaround for this?
Thanks for reporting this issue!
It is fixed in [a72af2]
Related
Commit: [a72af2]