<?php

$s = '10011';
echo preg_replace_callback("/11|10/", function($m) {
	return $m[0] == "11" ? "10" : "11";
}, $s);