fork(1) download
  1. <?php
  2. function clean($string) {
  3. $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens.
  4. return preg_replace('~[^\w %\[\].()%\\:@&/-]~', '', $string); // Removes special chars.
  5. }
  6.  
  7. $d = clean("this was http://nice readlly n'ice 'test for@me to") ;
  8. echo $d;
  9. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
this-was-http://nice-readlly-nice-test-for@me-to