fork download
  1. <?php
  2.  
  3. $str = '<p>Blockbuster event so big that the excerpt will not even fit into the allotted space.</p> <p>The post <a rel="nofollow" href="http://e...content-available-to-author-only...e.com/event/sample-event/">Sample Event</a> appeared first on <a rel="nofollow" href="http://e...content-available-to-author-only...e.com">abc</a>.</p>';
  4.  
  5. preg_match('/<p>(.*)<\/p>/Ui', $str, $results);
  6. var_dump($results[1]);
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
string(84) "Blockbuster event so big that the excerpt will not even fit into the allotted space."