fork download
  1. <?php
  2.  
  3. $html = "à";
  4. $html = preg_replace("/\s/", "", $html);
  5. echo $html;
  6.  
  7. $html = "à";
  8. $html = preg_replace("/[\t\n\r\f\v]/", "", $html);
  9. echo $html;
  10.  
  11. ?>
  12.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
àà