fork(1) download
  1. <?php
  2.  
  3. $html = '<div><p class ="star_rating five"> </p><div>';
  4. if (!empty($html)) {
  5. $dom = new DOMDocument();
  6. $dom->loadHTML($html);
  7. $xpath = new DOMXPath($dom);
  8.  
  9. $desiredTag = "p";
  10.  
  11. foreach ($xpath->query('//'.$desiredTag) as $node) {
  12. $p = $node->getAttribute('class');
  13. echo $p;
  14. }
  15. }
  16.  
Success #stdin #stdout 0.02s 26632KB
stdin
Standard input is empty
stdout
star_rating five