fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. function clean($string) {
  6. eval('$string = "'.$string.'";');
  7. $string = str_replace(' ', ' ', $string); // Replaces all spaces with hyphens.
  8. return preg_replace('/[^A-Za-z0-9 @\-]/', '', $string); // Removes special chars.
  9. }
  10.  
  11. $d = clean('this was readlly n'ice 'test for@me to') ;
  12. echo $d;
  13.  
Runtime error #stdin #stdout #stderr 0.01s 20552KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected 'ice' (T_STRING) in /home/rjJ8YO/prog.php on line 10