<?php /* 用手册上的例子 */ $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" ?>
Der entscheidende Punkt ist, dass die Länge negativ ist. Das bedeutet, dass das Array so weit entfernt ist, dass es die Länge vom Ende des Arrays erreicht.
Weitere verwandte Artikel über die Verwendung von PHP Array_Slice-Funktion und detaillierte Erklärung der Parameter, bitte beachten Sie die chinesische PHP-Website!
Verwandte Artikel:
php array function sequence array_slice()