您可以使用simplehtmldom:
function getTextBetweenTags($string, $tagname) { // Create DOM from string $html = str_get_html($string); $titles = array(); // Find all tags foreach($html->find($tagname) as $element) { $titles[] = $element->plaintext; }}


