Strings Php

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