fork download
  1. <?php
  2.  
  3. $text='<p>
  4. <img';
  5. $fulltext='<p>
  6. <img ...... >текст</p>';
  7.  
  8. echo preg_replace('/<p>\s*<img/','<p class="image"><img', $fulltext);
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
<p class="image"><img ...... >текст</p>