Strings Php

$html = file_get_contents('example.html');
preg_match_all('@(.+?)@is', $html, $matches);
foreach ($matches[2] as $text) {
    print "Heading: $text \n";
}
?>