<?php

$html = '<div><p class ="star_rating five"> </p><div>';
if (!empty($html)) {
    $dom = new DOMDocument();
    $dom->loadHTML($html);
    $xpath = new DOMXPath($dom);
	
	$desiredTag = "p";
  
    foreach ($xpath->query('//'.$desiredTag) as $node) {
        $p = $node->getAttribute('class');
        echo $p;
    }
}
