Created
August 13, 2015 10:53
-
-
Save VictorFursa/1a9d0b85b7e648838adf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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