fork download
  1. <?php
  2.  
  3. $s = '10011';
  4. echo preg_replace_callback("/11|10/", function($m) {
  5. return $m[0] == "11" ? "10" : "11";
  6. }, $s);
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
11010