Return an array of elements from "0" to "50" and increment by 10.


SUBMITTED BY: henry1874w

DATE: June 27, 2017, 5:15 p.m.

FORMAT: Text only

SIZE: 56 Bytes

HITS: 647

  1. <?php
  2. $number = range(0,50,10);
  3. print_r ($number);
  4. ?>

comments powered by Disqus