For example, if I need to create an array with 20 spaces, do I always have to do this?
$teste = array(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19);
Or is there any way to shorten this process, from 0 to 19?
Something like: $teste = array(0..19);