Home > Backend Development > PHP Tutorial > Use of php array_slice function and detailed explanation of parameters_PHP tutorial

Use of php array_slice function and detailed explanation of parameters_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 15:49:57
Original
1023 people have browsed it

Copy the code The 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 important point is that length is negative. It means taking the array until it is as far as length from the end of the array

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319437.htmlTechArticleCopy the code as follows: ?php /* Use the example in the manual*/ $input = array ("a" , "b", "c", "d", "e"); $output = array_slice ($input, 2); // returns "c", "d", and "e", $output = arr. ..
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 Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template