php is having a function to extract slice of an array.
Find below the syntax of this function array_slice().
$outputarray=array_slice($inputarray,$offset,$length);
Here, the length argument is optional.
If you want to remove first two items from an array, you can use as below,
$arrNames=array_slice($arrNames,2);
We can specify negative number also as the offset. In this case, it will be taken from end of the array.
More Articles...
Thursday, May 7, 2009
Search This Blog

AI Course | Bundle Offer | Unlocking AI | Dream Big | Listen to Dream Big
Today's Deals | Timesheet | Products | SQL ebook | Earn 50% commission
About | Privacy | Follow | TOS | WhatsApp | Contact
I may earn a commission from Amazon affiliate links
No comments:
Post a Comment