Skip to content

Instantly share code, notes, and snippets.

@igormx
Created August 17, 2012 19:26
Show Gist options
  • Save igormx/3381788 to your computer and use it in GitHub Desktop.
Save igormx/3381788 to your computer and use it in GitHub Desktop.
Array Flip Reverse Range
<?php
$rango=range(5, 1);
$flipper=array_flip($rango);
$reverse=array_reverse($rango);
var_dump($rango);
var_dump($flipper);
var_dump($reverse);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment