Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

PHP ผลักค่าลงในอาเรย์ที่เชื่อมโยง?


หากต้องการส่งค่าลงในอาเรย์ที่เชื่อมโยง ให้ใช้วงเล็บเหลี่ยม [] [] ขั้นแรกให้สร้าง associative array -

$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
      )
   )
)