[ create a new paste ] login | about

Link: http://codepad.org/EgQG8f2D    [ raw code | output | fork ]

PHP, pasted on Apr 24:
1
2
3
4
5
<?php

$options = range(0, 10);
unset($options[0]);
var_dump($options);


Output:
array(10) {
  [1]=>
  int(1)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(4)
  [5]=>
  int(5)
  [6]=>
  int(6)
  [7]=>
  int(7)
  [8]=>
  int(8)
  [9]=>
  int(9)
  [10]=>
  int(10)
}


Create a new paste based on this one


Comments: