fork(2) download
  1. <?php
  2. $text = 'first line
  3. second line';
  4. $text = addcslashes($text, "\x20\t");
  5. $text = preg_replace('/\s+/', ' ', $text);
  6. $text = stripslashes($text);
  7. $text = preg_replace('/\s+/', ' ', $text);
  8. var_dump($text);
  9.  
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
string(22) "first line second line"