Skip to content

Instantly share code, notes, and snippets.

@kwd
Forked from jnaskali/gist:2420386
Created July 20, 2012 08:19
Show Gist options
  • Save kwd/3149541 to your computer and use it in GitHub Desktop.
Save kwd/3149541 to your computer and use it in GitHub Desktop.
PHP: Match HTML/XML tag with regex
function get_tag( $tag, $xml ) {
$tag = preg_quote($tag);
preg_match_all('{<'.$tag.'[^>]*>(.*?)</'.$tag.'>.'}',
$xml,
$matches,
PREG_PATTERN_ORDER);
return $matches[1];
}
// source http://www.catswhocode.com/blog/15-php-regular-expressions-for-web-developers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment