1

Apparently, in PHP, there are a few DOM selectors like getElementById and getElementsByTagName but not the class selector, getElementsByClassName that is in javaScript, but strangely, not in PHP. Now, I have made a project that has to use class selectors in order to locate the elements in that particular page's DOM, but nethertheless, considering there's no getElementsByClassName method in PHP; I can't complete my project correctly.

So, how is it possible to apply "get elements by class name" in the PHP Document Object Model(DOM)?

Any help would be appreciated!

Mystical
  • 2,505
  • 2
  • 24
  • 43
  • you could use a `DOMXPath` query to target elements by tag and class quite easily – Professor Abronsius Aug 28 '16 at 12:22
  • 4
    Possible duplicate of [Get Element by ClassName with DOMdocument() Method](http://stackoverflow.com/questions/20728839/get-element-by-classname-with-domdocument-method) – u_mulder Aug 28 '16 at 12:23

1 Answers1

0

Use DOMXPath with a custom XPath query. See How can I find an element by CSS class with XPath?

Community
  • 1
  • 1
Shira
  • 6,392
  • 2
  • 25
  • 27