Home  >  Article  >  Backend Development  >  How to remove the first few elements of an array in php

How to remove the first few elements of an array in php

王林
王林Original
2020-11-03 15:15:545587browse

php method to take out the first few elements of the array: You can use the array_slice function to achieve this, such as [print_r(array_slice($a,2))], which means taking out the third element of the array and returning the remaining elements in the array.

How to remove the first few elements of an array in php

Function introduction:

array_slice() function takes out a value from the array based on conditions and returns it.

(Recommended tutorial: php video tutorial)

Note: If the array has string keys, the returned array will retain the key names.

Example:

Start taking out the third element of the array and return the remaining elements in the array.

Code implementation:

Start taking out the second element of the array and return only two elements.

Code implementation:

Related recommendations: php training

The above is the detailed content of How to remove the first few elements of an array in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to replace src in phpNext article:How to replace src in php