fork(1) download
  1. <?php
  2.  
  3. $content = '
  4. hello&nbsp;world
  5. &nbsp;
  6. &nbsp;hello&nbsp;
  7.  
  8. <!-- wp:paragraph -->
  9. <p></p>
  10. <!-- /wp:paragraph -->
  11.  
  12. <!-- wp:paragraph -->
  13. <p></p>
  14. <!-- /wp:paragraph -->
  15.  
  16. <!-- wp:paragraph -->
  17. <p></p>
  18. <!-- /wp:paragraph -->
  19. aaa
  20.  
  21. ';
  22.  
  23.  
  24. //$text = str_replace(array("\n"."&nbsp;"."\n", ' &nbsp; ', ' &nbsp; ', ' &nbsp;'), '', $text);
  25.  
  26. $content = str_replace(array("<!-- wp:paragraph -->"."\n"."<p></p>"."\n"."<!-- /wp:paragraph -->", '<!--[if gte mso 9]&gt;-->', '<p></p>', '<h2></h2>'), '', $content);
  27.  
  28.  
  29. var_dump($content);
  30.  
  31.  
  32.  
Success #stdin #stdout 0.02s 24080KB
stdin
Standard input is empty
stdout
string(69) "
   hello&nbsp;world
   &nbsp;
   &nbsp;hello&nbsp;
   





aaa
   
"