Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP 연관 배열에 값 푸시?

<시간/>

값을 연관 배열로 푸시하려면 대괄호 [] []를 사용합니다. 먼저 연관 배열을 만듭니다. -

$details= array (
   'id' => '101',
   'name' => 'John Smith',
   'countryName' => 'US'
);

PHP 코드는 다음과 같이 값을 삽입합니다 -

예시

<!DOCTYPE html>
<html>
<body>
<?php
   $details= array (
      'id' => '101',
      'name' => 'John Smith',
      'countryName' => 'US'
   );
   $all_details['studentDetails'][] = $details;
   print_r($all_details);
?>
</body>
</html>

출력

Array (
 [studentDetails] => Array (
    [0] => Array (
       [id] => 101 [name] => John Smith [countryName] => US
      )
   )
)