使用 unset 函数从数组中删除元素的 PHP 程序


要使用 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);

更新日期:17-Aug-2020

321 次浏览

开始你的 职业

完成课程,获得认证

开始
广告