Skip to content

Instantly share code, notes, and snippets.

@VictorFursa
Created August 13, 2015 10:53
Show Gist options
  • Save VictorFursa/1a9d0b85b7e648838adf to your computer and use it in GitHub Desktop.
Save VictorFursa/1a9d0b85b7e648838adf to your computer and use it in GitHub Desktop.
for($i = 0;$i < count($array);$i++) {
if ($array[$i] % 2) {
if (isset($array[$i - 1])) {
$buffer = $array[$i];
$array[$i] = $array[$i-1];
$array[$i-1] = $buffer;
}
}
}
var_dump($array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment