Skip to content

Instantly share code, notes, and snippets.

@imvaskii
Created November 19, 2018 00:01
Show Gist options
  • Save imvaskii/3bf645dee9b3561d16760fffb39c3e81 to your computer and use it in GitHub Desktop.
Save imvaskii/3bf645dee9b3561d16760fffb39c3e81 to your computer and use it in GitHub Desktop.
Match all HTML p tags
<?php
function match_all_p_tags( $str ) {
$re = '/<p.+>*[\w\s]*<\/p>/m';
$p_tags_count = preg_match_all( $re, $str, $matches, PREG_SET_ORDER, 0 );
var_dump( $p_tags_count, $matches )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment