remove whitespace


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function remove_whitespace($string) {
  2.  
  3. $string = preg_replace('/\s+/', ' ', $string);
  4. $string = trim($string);
  5. return $string;
  6.  
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.