<?php $array = range('a', 'z'); echo implode('', array_slice($array, 2, 3)).PHP_EOL; // cde echo implode('', array_slice($array, 2, 0)).PHP_EOL; // (nothing) echo implode('', array_slice($array, 2, 1000)).PHP_EOL; // the rest echo implode('', array_slice($array, 2, null)).PHP_EOL; // the rest echo implode('', array_slice($array, 2)).PHP_EOL; // the rest
You have javascript disabled. You will not be able to edit any code.