Skip to content
Advertisement

PHP HTML Simple DOM extract attribute

I have this html code :

JavaScript

I’m looking to extract only “data-rowID” value, 79528. I made a lot of attempts like

JavaScript

or

JavaScript

but none is working. Where did I get it wrong ? Thank you.

Advertisement

Answer

You need to load the string into the parser via str_get_html(). The attribute name selector seems to be required to be lower case.

JavaScript

Prints out

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement