array_slice
array_slice(배열, 시작위치, 자를길이)

// 예
array_slice(array, -4, 4);
// 결과 뒤에서 4개만 잘라서 가져온다​

+ Recent posts