PHP 프로그래밍 언어의 array_push() 함수는 실제로 요구 사항에 따라 새 요소를 특정 배열에 푸시하는 데 도움이 되는 내장 함수입니다. 요구 사항에 따라 하나 또는 여러 요소를 특정 배열에 푸시할 수 있으며 이러한 배열 요소는 마지막 섹션/인덱스 값 위치에 삽입됩니다. array_push() 함수 사용으로 인해 특정 배열에 푸시되는 요소 수에 따라 특정 배열의 길이가 증가/증가됩니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
PHP array_push()의 구문과 매개변수는 다음과 같습니다.
array_push($array1, $value1, $value2, $value3, …..)
array_push() 함수의 매개변수 설명:
PHP 프로그래밍 언어의 array_push() 함수 내부에는 두 개 이상의 매개변수를 사용할 수 있습니다. array_push() 함수의 매개변수 수는 기본적으로 특정 배열에 실제로 푸시되는 요소 수에 따라 달라집니다. 이러한 매개변수를 구체적으로 두 가지 범주로 분류할 수 있습니다. 1. $array1, 2. 값 목록
PHP 프로그래밍 언어의 array_push() 함수는 기본적으로 일부 요소를 특정 배열에 푸시하는 것만으로 작동합니다. array_push() 함수는 array_push() 함수 내부에 실제로 지정된 원래 배열에 여러 요소를 푸시하는 데도 작동합니다. 작동하게 되면 배열의 길이가 늘어나며 배열에 삽입된 요소 수에 따라 달라집니다. 배열에 키와 값 쌍이 있으면 메서드는 푸시된 값에 숫자 키를 추가하려고 시도합니다. PHP의 이 array_push() 함수는 PHP 4, PHP 5 및 PHP 7 버전에서만 실행됩니다.
원래 배열 매개변수와 값 목록 매개변수를 사용하여 array_push() 함수를 보여주는 예입니다. 먼저 PHP 태그
코드:
<?php // PHP code which helps in illustrating the usage of array_push() function of PHP // The Input array echo "<hr>"; $array1 = array("ram", "krishna", "aakash"); echo "The array values which are present before pushing elements :: "; echo "<br>"; print_r($array1); echo "<hr>"; // elements to push $value1 = "pavan"; $value2 = "kumar"; $value3 = "sake"; $value4 = "anil"; $value5 = "maruthi"; $value6 = "raj"; echo "The array values which are present after using the pushing function :: "; echo "<br>"; // This is the array which is after the pushing of some new elements array_push($array1, $value1, $value2, $value3, $value4, $value5, $value6); print_r($array1); echo "<hr>"; ?>
출력:
이 예제는 예제 1과 유사하지만 차이점은 array() 함수 내부에서 Key 및 value 매개변수가 선언/언급된다는 것입니다(Key_value 쌍이 언급됨). 그 외에는 모든 것이 예제 1과 매우 유사합니다. 아래 출력 섹션에 언급된 프로그램의 출력을 확인하면 array_push() 함수를 더 쉽고 쉽게 이해할 수 있습니다.
코드:
<?php // PHP code which helps in illustrating the usage of array_push() function of PHP // The Input array echo "<hr>"; $array2 = array(1=>"rahim", 2=>"krishnaveni", 3=>"lion"); echo "The array values which are present before pushing elements :: "; echo "<br>"; print_r($array2); echo "<hr>"; // elements to push $valuea1 = "pavan"; $valuea2 = "sake"; $valuea3 = "kumar"; $valuea4 = "king"; $valuea5 = "queen"; $valuea6 = "birbal"; echo "The array values which are present after using the pushing function :: "; echo "<br>"; // This is the array which is after the pushing of some new elements array_push($array2, $valuea1, $valuea2, $valuea3, $valuea4, $valuea5, $valuea6); print_r($array2); echo "<hr>"; ?>
출력:
This example is a simple illustration of the array_push() function but here only some integer values are used as the array elements. Then four variables are created with some integer values to it. Then all those four variable values are pushed into the original array with the help of array_push() function. Other than this everything is similar to example 1 and 2. You can check the output below to understand the concept of array_push() better and so easily.
Code:
<?php // PHP code which helps in illustrating the usage of array_push() function of PHP // The Input array echo "<hr>"; $array2 = array(2, 42, 8); echo "The array values which are present before pushing elements :: "; echo "<br>"; print_r($array2); echo "<hr>"; // elements to push $valuea1 = 12; $valuea2 = 13; $valuea3 = 14; $valuea4 = 15; echo "The array values which are present after using the pushing function :: "; echo "<br>"; // This is the array which is after the pushing of some new elements array_push($array2, $valuea1, $valuea2, $valuea3, $valuea4); print_r($array2); echo "<hr>"; ?>
Output:
위 내용은 PHP 배열_푸시()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!