$result = preg_replace('/abc(def)hij/', '/1/', $string); $result = preg_replace('/abc(def)hij/', '/$1/', $string); $result = preg_replace('/abc(def)hij/', '/${1}/', $string);