<?php $array = range(0,10); $slice = array_slice($array,12); // same with and without the offset parameter! print_r($slice); // Empty! $array = range(0,5); $slice = array_slice($array,3); print_r($slice); // As expected 3 elements!
You have javascript disabled. You will not be able to edit any code.