fork(1) download
  1. <?php
  2.  
  3. $userResponse = "i'm so happy that you're here with me! :)";
  4. $userResponse = preg_replace("~[^a-zA-Z',.?!\s]~", "", $userResponse);
  5.  
  6. echo $userResponse;
  7.  
  8. ?>
Success #stdin #stdout 0.05s 52480KB
stdin
Standard input is empty
stdout
i'm so happy that you're here with me!