fork(4) download
  1. <?php
  2.  
  3. $name = 'Adam';
  4. $line = 'This is (Adam) Eve!';
  5. $newline = preg_replace("/\(|\)|$name/",'',$line);
  6. echo $newline;
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
This is  Eve!