Start the slice from the third array element, and return the rest of the elements in the array:
<?php
$a=array("red","green","blue","yellow","brown");
print_r(array_slice($a,2));
?>
by გიორგი ბაკაშვილი
4 years ago
PHP
Array
PHP official doc
-1
Pro tip: use ```triple backticks around text``` to write in code fences
0
Valeri Tandilashvili 4 years ago
კარგი იქნებოდა მაგალითი მოგეყვანა სამ პარამეტრზე, ასევე - მეორე უარყოფით პარამეტრზე
REPLY