PHP에서 배열의 마지막 요소 가져오기는 end() 함수를 사용하여 연관 배열에 있는 마지막 요소를 가져오는 것을 의미합니다. PHP의 end() 함수는 배열의 마지막 요소를 가리킨 다음 배열의 마지막 요소를 반환하기 위해 배열과 관련된 내부 포인터를 조작하고 재생하는 고유한 기능을 갖춘 내장 함수입니다. 마지막 요소를 가져오는 데 사용되는 이 내장 함수는 PHP 버전 4, PHP 버전 5 및 PHP 7과 같은 일부 특정 PHP 버전과 호환됩니다.
광고 이 카테고리에서 인기 있는 강좌 PHP 개발자 - 전문 분야 | 8개 코스 시리즈 | 3가지 모의고사무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
배열의 마지막 요소를 가져오는 구문 흐름은 다음과 같습니다.
end($src_array)
PHP에서 배열의 마지막 요소를 가져오는 방법에는 여러 가지가 있지만 요구 사항 때문에 몇 가지 방법을 권장합니다. PHP의 요소 및 배열 인덱스 내에서 가져오기 및 조작은 순회에 따라 수행됩니다. 따라서 데이터를 어떻게 조작해야 하는지에 따라 다릅니다.
PHP에서 배열의 마지막 요소를 가져오는 방법은 다음과 같습니다.
아래에는 다양한 예가 나와 있습니다.
이 프로그램은 표시된 것처럼 end() 함수를 사용하여 배열의 마지막 요소를 인쇄하여 배열의 마지막 요소를 검색하는 방법을 보여주는 데 사용됩니다. 소스 배열에 대한 입력은 과일 목록이고, 가져올 마지막 요소는 출력에 표시된 대로 바나나입니다.
코드:
<?php $arr = array('Apple', 'Guava', 'Banana'); echo end($arr); ?>
출력:
이 프로그램은 데이터베이스에서 열과 관련된 데이터를 가져온 다음 표시된 대로 열에서 마지막 이름의 값을 검색하기 위해 인덱스된 열 내에 관련 요소를 제공하는 데 사용되는 PHP 배열 세트를 보여줍니다. 출력됩니다.
코드:
<?php $rcrds = array( array( 'id' => 1124, '1st_nm' => 'Ani', 'lst_nm' => 'Jo', ), array( 'id' => 2356, '1st_nm' => 'Samm', 'lst_nm' => 'Brack', ), array( 'id' => 7890, '1st_nm' => 'Brown', 'lst_nm' => 'Dan_l', ), array( 'id' => 5623, '1st_nm' => 'Ptr', 'lst_nm' => 'Katty', ) ); $last_nm = array_column($rcrds, 'lst_nm'); print_r($last_nm); ?>
출력:
이 프로그램은 PHP의 pop() 함수를 보여줍니다. 이 함수는 먼저 목록을 가져온 다음 목록의 실제 값을 마지막 요소로 반환하는 조작을 통해 배열의 마지막 요소를 가져오는 방법을 독점적으로 보여줍니다. 산출. end() 함수와 pop() 함수의 사용은 출력과 같이 수행됩니다.
Code:
<!DOCTYPE html> <html> <body> <?php $arr_lst=array("magenta","green","red","blue","pink"); array_pop($arr_lst); print_r($arr_lst); ?> </body> </html>
Output:
This program demonstrates the difference between the last key and end function simultaneously to fetch the last value from an array by consuming a set of arrays as input and giving a string of length 3 as output as shown in the output.
Code:
<!DOCTYPE html> <html> <body> <?php $ar_lst = array( '1st' => 151, '2nd' => 234, 'lst' => 657, ); end($ar_lst); $key_set = key($ar_lst); var_dump($key_set); ?> </body> </html>
Output:
Note: A mere recommendation for the above program to get the last element of an array is the combination of both the end() function and key() function, where the end() function will be used to return the last element by advancing the array’s internal pointer followed by returning the value. Similarly, the key() function will also return the index element of the current array.PHP’s last element of an array is fetching the last element from an array using certain functions in PHP like the end() function, pop() function. Again, it all depends on the requirement of fetching and the manipulation needed to be performed on the array set. Also, an internal pointer within the array can be used as a pointer for performing the operation.
위 내용은 PHP는 배열의 마지막 요소를 가져옵니다의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!