fork download
  1. <?php
  2. $str = 'Hello world';
  3. $new =str_replace(' ','',$str);
  4. echo $new;
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
Helloworld