Monday, 7 September 2015

how to skip first value from foreach loop

To skip first value from foreeach loop ,you can use inbuilt function and easily skip first value from foreach.
See example
foreach (array_slice($images,1) as  $image) {

No comments:

Post a Comment