fork download
  1. <?php
  2.  
  3. $input = "We create it, \"they create that\"";
  4. echo preg_replace_callback('/("[^"]*")|creat(?:e|ing)/i', function($m) {
  5. return !empty($m[1]) ? $m[1] : 'make';
  6. }, $input);
  7.  
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
We make it, "they create that"