Is it possible to get the data with DomCrawler?
$cralwer->attr('class')
gets me the node's class attribute, but ->attr('data-something')
or ->attr('something')
always results in null
.
Edit: tagging PHP also because I tried while manipulating the DomElement
object from php (using ->attributes->getNamedItem()
) and it still won't work. I'm wondering if it's just not possible to return a data attribute at all?