php数组删除指定的元素
墨初 编程开发 469阅读
php中提供了多种方法来删除数组中的元素,下面的博文中73so博客将详细的介绍几种删除数组元素的方法。
php删除数组元素的方法
php内置函数unset()可以删除数组中的指定元素,可以通过一个或多个指定的数组键名从数组中删除对应的元素,并释放其内存空间。
方法1:
php删除数组中指定下标的元素。
$fruit = array('apple', 'banana', 'cherry', 'dates'); unset($fruit[1]); // 删除 $fruit 数组的第二个元素 print_r($fruit);
输出结果:
Array ( [0] => apple [2] => cherry [3] => dates )
方法2:
php删除数组中指定值的元素。
$fruit = array('apple', 'banana', 'cherry', 'dates'); $key = array_search('banana', $fruit); unset($fruit[$key]); print_r($fruit);
输出结果
Array ( [0] => apple [2] => cherry [3] => dates )
上面的示例代码中利用array_search()函数获取到指定元素的下标也就是元素的键,并通过数组的键来删除指定的元素。