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

โปรแกรม PHP เพื่อลบองค์ประกอบออกจากอาร์เรย์โดยใช้ฟังก์ชัน unset


หากต้องการลบองค์ประกอบออกจากอาร์เรย์โดยใช้ฟังก์ชัน unset รหัส PHP มีดังต่อไปนี้ -

ตัวอย่าง

<?php
   $my_array = array("Joe", "Ben", "Mary", "Barun", "Sona", "Mona");
   unset($my_array[4]);
   print_r("After deleting the element, the array is");
   print_r ($my_array);
?>

ผลลัพธ์

After deleting the element, the array isArray (
   [0] => Joe [1] => Ben [2] => Mary [3] => Barun [5] =>
   Mona
)

ด้านบน มีการกำหนดอาร์เรย์ด้วยหลายสตริง -

$my_array = array("Joe", "Ben", "Mary", "Barun", "Sona", "Mona");

ใช้ฟังก์ชัน unset โดยการระบุดัชนีขององค์ประกอบในอาร์เรย์ที่ต้องการลบข้อมูล หลังจากลบองค์ประกอบแล้ว เอาต์พุต/อาร์เรย์จะถูกพิมพ์บนหน้าจอ -

unset($my_array[4]);
print_r("After deleting the element, the array is");
print_r ($my_array);