배열은 모든 데이터 유형의 요소 모음입니다. PHP에는 문자열, 정수, 부울, 배열, 개체, 리소스 등과 같은 많은 데이터 유형이 있습니다. 2D 배열은 이러한 데이터 유형을 주로 배열로 혼합한 것입니다. PHP에는 다음과 같은 세 가지 유형의 2D 배열이 있습니다.
광고 이 카테고리에서 인기 있는 강좌 PHP 개발자 - 전문 분야 | 8개 코스 시리즈 | 3가지 모의고사무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
이 세 가지 배열은 아래에 설명되어 있습니다.
숫자 인덱스가 포함된 배열
구문:
array(value1, value2, value3, …);
예:
$input = array(10,20,30,40,50);
문자열 또는 숫자 인덱스가 있는 배열입니다. 이 배열의 요소는 키-값 쌍의 형태로 저장됩니다.
구문:
array('key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3',…);
예:
$input = array(0 =>Emma, 1=>Alice, 2=>'John');
배열의 배열은 다차원 배열이거나 2차원 배열이거나 중첩 배열입니다. 이 형식은 항상 배열 또는 배열입니다. 따라서 중첩 배열이라고 합니다.
구문:
array ( array (elements...), array (elements...), ... )
예:
$input = array( array( "red", "green", "blue" ), array( "yellow", "black", "white" ) );
위 예시에서 입력 배열은 2차원 배열의 예시입니다. 여기서 기본 배열에는 2개의 요소가 포함되어 있으며 각 요소 자체는 3개의 요소로 구성된 배열입니다.
2D 배열에서 값 요소는 추가로 하위 배열을 가질 수 있는 배열이라는 것을 배웠습니다. 배열에 언급된 차원은 행과 열의 형태입니다. 배열의 표 형식을 염두에 두면 이러한 배열을 정의하는 방법을 배우는 것이 더 쉽습니다. 즉, 2차원 배열이면 2개의 인덱스가 사용되고, 3차원 배열이면 3개의 인덱스가 사용되는 식입니다.
2D 배열을 정의하는 방법을 알았으므로 이제 만들 수 있습니다. 여기서 인덱스는 정의되지 않으며 기본적으로 항상 0으로 시작하는 숫자입니다.
$input=array( array( "red", "green", "blue" ), array( "yellow", "black", "white" ) );
연관배열 형태로도 배열을 정의할 수 있습니다.
(in key =>value form)
인덱스 또는 키는 색상, 과일, 자동차와 같은 문자열입니다. 값 요소는 각각 3개의 요소를 포함하는 배열 형식입니다.
$input = array( 'colors'=>array ("Red", "Green", "Blue"), 'fruits'=>array ("Apple", "Orange", "Grapes"), 'cars'=>array ("BMW", "Skoda", "Mercedes") );
이러한 배열 값에 액세스하려면 대괄호를 사용할 수 있습니다. 2D 배열의 더 많은 레벨에 들어가면서 각 레벨마다 대괄호 세트의 사용이 증가합니다.
코드:
$input = array ( 'colors' =>array ("Red", "Green", "Blue"), 'fruits' =>array ("Apple", "Orange", "Grapes"), 'cars' =>array ("Skoda", "BMW", "Mercedes") );
첫 번째 대괄호 세트에는 색상, 과일, 자동차라는 키가 포함되어 있다는 점을 기억하세요. 그 뒤에는 다음 레벨로 이동하기 위한 대괄호 세트가 하나 더 있으며 0,1,2와 같은 숫자로 액세스할 수 있습니다.
위 배열의 "Grapes" 요소에 액세스하려면
echo $input['fruits'][2];
다음 예시도 유사
배열의 "Mercedes" 요소에 액세스하려면
echo $input['cars'][2];
배열의 "Red" 요소에 액세스하려면
echo $input['colors'][0];
배열에서는 인덱스가 항상 0으로 시작합니다.
코드:
$input = array ( array ("Red", "Green", "Blue"), array ("Yellow", "Orange", "Purple"), );
위 배열의 "Orange" 요소에 액세스하려면 다음 줄을 사용합니다
echo $input[0][1];
'녹색'을 부여합니다
echo $input[1][2];
“보라색”을 드립니다
echo $input[0][0];
“빨간색”을 부여합니다
배열 요소를 정의하고 생성하고 액세스하는 방법을 알았으므로 이제 배열에 요소를 삽입하는 방법을 배우겠습니다. 삽입할 array_push() 함수, 제거할 array_shift() 함수 등과 같이 다차원 배열에서 작동하도록 PHP에 정의된 배열 함수가 있습니다.
$input = array ( 'colors'=>array ("Red", "Green", "Blue"), 'fruits'=>array ("Apple", "Orange", "Grapes"), 'cars'=>array ("Skoda", "BMW", "Mercedes") );
print_r() 함수를 사용하여 먼저 배열을 있는 그대로 인쇄해 보겠습니다.
코드:
//create multidimensional array $input = array ( "colors"=>array ("Red", "Green", "Blue"), "fruits"=>array ("Apple", "Orange", "Grapes"), "cars"=>array ("Skoda", "BMW", "Mercedes") ); // print the multidimensional array echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
출력:
이제 사용할 과일 하위 배열에 요소를 추가합니다
array_push() function
구문:
array_push(array, value1,value2...)
어디,
코드:
$input = array ( "colors"=>array ("Red", "Green", "Blue"), "fruits"=>array ("Apple", "Orange", "Grapes"), "cars"=>array ("Skoda", "BMW", "Mercedes") ); array_push($input['colors'], "Black"); echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
출력:
아래 프로그램에서는 "colors" 키를 제거하고 출력 이미지에 표시된 대로 0 키를 사용하여 지정된 배열의 마지막에 추가되는 것을 확인했습니다.
Code:
// create multidimensional array $input = array ( "colors"=>array ("Red", "Green", "Blue"), "fruits"=>array ("Apple", "Orange", "Grapes"), "cars"=>array ("Skoda", "BMW", "Mercedes") ); // adding a value to array array_push($input, "Black"); // print the multidimensional array echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
Output:
Code:
//create multidimensional array $input = array ( array ("Red", "Green", "Blue"), array ("Yellow", "Orange", "Purple") ); //add a color to the array array_push($input, "Black"); // print the multidimensional array echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
Output:
To update an element of the 2D array just get the key from the array and replace the value of that key in a particular array.
$input['cars']['Mercedes'] = 'Duster';
Code:
//create multidimensional array $input = array ( "colors"=>array ("Red", "Green", "Blue"), "fruits"=>array ("Apple", "Orange", "Grapes"), "cars"=>array ("Skoda", "BMW", "Mercedes") ); //update the Mercedes with Duster $input["cars"][2] = "Duster"; // print the multidimensional array echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
Output:
Code:
//create multidimensional array $input = array ( array ("Red", "Green", "Blue"), array ("Yellow", "Orange", "Purple") ); //update the Mercedes with Duster $input[0][1] = "White"; // print the multidimensional array echo "<pre class="brush:php;toolbar:false">"; print_r($input); echo "<pre class="brush:php;toolbar:false">";
Output:
To delete an element of the 2D array we will use array_shift() function.
array_shift removes and returns the first element value of the array.
Syntax:
array_shift(array)
where
-array is the $input array
Code:
//create multidimensional array $input = array ( "colors"=>array ("Red", "Green", "Blue"), "fruits"=>array ("Apple", "Orange", "Grapes"), "cars"=>array ("Skoda", "BMW", "Mercedes") ); //print the removed element print_r(array_shift($input));
Output:
Code:
//create multidimensional array $input = array ( array ("Red", "Green", "Blue"), array ("Yellow", "Orange", "Purple") ); //print the removed element print_r(array_shift($input));
Output:
In the following example, we have created a 2-d array containing the information of books like the author of the book, type of book, and published in the year. Also, we will learn how to traverse or loop through this array. Looping through the multidimensional array we will use a nested foreach loop. Meaning one foreach loop inside another foreach loop. The same can also be done using for loop.
$input = array( "The_Alchemist" => array ( "author" => "Paulo Coelho", "type" => "Fiction", "published_year" => 1988 ), "Managing_Oneself" => array ( "author" => "Peter Drucker", "type" => "Non-fiction", "published_year" => 1999 ), "Measuring_the_World" => array( "author" => "Daniel Kehlmann", "type" => "Fiction", "published_year" => 2005 ) );
Just printing the above array without any loop will give us the following output:
Code:
// create multidimensional array $input = array( "The_Alchemist" => array ( "author" => "Paulo Coelho", "type" => "Fiction", "published_year" => 1988 ), "Managing_Oneself" => array ( "author" => "Peter Drucker", "type" => "Non-fiction", "published_year" => 1999 ), "Measuring_the_World" => array( "author" => "Daniel Kehlmann", "type" => "Fiction", "published_year" => 2005 ) ); // print the plain multidimensional array echo ""; print_r($input); echo "";
Output:
Now we will print the multidimensional array using a foreach loop.
Code:
// create multidimensional array $input = array( "The_Alchemist" => array ( "author" => "Paulo Coelho", "type" => "Fiction", "published_year" => 1988 ), "Managing_Oneself" => array ( "author" => "Peter Drucker", "type" => "Non-fiction", "published_year" => 1999 ), "Measuring_the_World" => array( "author" => "Daniel Kehlmann", "type" => "Fiction", "published_year" => 2005 ) ); //foreach to loop the outer array foreach($input as $book) { echo "
"; // foreach to loop the inner array foreach($book as $key=>$value) { echo $key." ". $value. "
"; } }
Output:
I hope this article is helpful to learn the concepts of the topic on a 2D array in PHP. This topic covers all the concepts required for the understanding related to the 2D array in PHP. This topic is made simpler with the help of examples with the output snapshots to refer to. According to the article, if all the programs are practiced well will surely help you to grasp the concepts easily. I hope the topic is made more informative for gaining more knowledge.
위 내용은 PHP의 2D 배열의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!