Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなサムネイルの配列があります。
$thumbnails = array(1,2,3,4,5,6,7,8,9,10);
まず、現在の値に基づいて 6 の制限を適用したいkey = 3ので、配列は次の値を返す必要があります3,4,5,6,7,8。
key = 3
3,4,5,6,7,8
次のリンクを押すと、配列が返されます: 4,5,6,7,8,9;
4,5,6,7,8,9
前のリンクを押すと、配列は次を返すはずです: 2,3,4,5,6,7.
2,3,4,5,6,7
使用array_slice():
array_slice()
$start = 3; $limit = 6; $limited = array_slice( $thumbnails, $start - 1, $limit);