Guest User

Untitled

a guest
Jan 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2. $numbers = array(1,4,6,2);
  3. array_push($numbers, array_shift($numbers));
  4. print_r($numbers);
  5. ?>
  6.  
  7. Array
  8. (
  9. [0] => 4
  10. [1] => 6
  11. [2] => 2
  12. [3] => 1
  13. )
Add Comment
Please, Sign In to add comment