최신 웹 개발 튜토리얼
 

PHP end() Function

<PHP 배열 문헌

출력 전류와 배열의 마지막 요소의 값 :

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>";
echo end($people);
?>
»실행 예

정의 및 사용

end() 함수는 내부 포인터 및 출력 배열의 마지막 요소를 이동시킨다.

관련 방법 :

  • current() - 배열의 현재 원소의 값을 반환
  • next() - 배열, 다음 요소를 내부에 포인터를 이동하고, 출력
  • prev() - 배열, 이전 요소를 내부에 포인터를 이동하고, 출력
  • reset() - 어레이의 첫 번째 요소 내부 포인터 이동
  • each() - 현재 요소의 키 값을 반환하고, 전방 내부 포인터 이동

통사론

end( array )

매개 변수 기술
array 필요합니다. 사용하는 배열을 지정합니다

기술적 세부 사항

반환 값 : 성공에 배열의 마지막 요소의 값을 돌려 배열이 비어 FALSE 인 경우
PHP 버전 : 4+

더 예

예 1

관련된 모든 방법을 데모 :

<?php
$people = array("Peter", "Joe" , "Glenn" , "Cleveland");

echo current($people) . "<br>"; // The current element is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe
echo current($people) . "<br>"; // Now the current element is Joe
echo prev($people) . "<br>"; // The previous element of Joe is Peter
echo end($people) . "<br>"; // The last element is Cleveland
echo prev($people) . "<br>"; // The previous element of Cleveland is Glenn
echo current($people) . "<br>"; // Now the current element is Glenn
echo reset($people) . "<br>"; // Moves the internal pointer to the first element of the array, which is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe

print_r (each($people)); // Returns the key and value of the current element (now Joe), and moves the internal pointer forward
?>
»실행 예

<PHP 배열 문헌