fork download
  1. <?php
  2.  
  3. $y = range("a", "z", 2);
  4. print_r($y);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Array
(
    [0] => a
    [1] => c
    [2] => e
    [3] => g
    [4] => i
    [5] => k
    [6] => m
    [7] => o
    [8] => q
    [9] => s
    [10] => u
    [11] => w
    [12] => y
)