Array_slice php array_slice function usage and detailed explanation of parameters

WBOY
Release: 2016-07-29 08:38:42
Original
1073 people have browsed it

Copy the codeThe code is as follows:


/*
Use the example in the manual
*/
$input = array ("a", "b", "c", "d" , "e");
$output = array_slice ($input, 2); // returns "c", "d", and "e",
$output = array_slice ($input, 2, -1); / / returns "c", "d"
$output = array_slice ($input, -2, 1); // returns "d"
$output = array_slice ($input, 0, 3); // returns "a" , "b", and "c"
?>


The key point is that length is negative. It means taking the array until it is as far as length from the end of the array

The above introduces the use of array_slice php array_slice function and detailed explanation of parameters, including array_slice content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!