Home>Article>Backend Development> What is the php function to delete array values?
In the PHP language, there are many functions for deleting array values. The commonly used ones are unset(), array_splice() and array_filter().
$arr = array("apple", "banana", "orange");
unset($arr[1]); //Delete the element "banana" with subscript 1
print_r($arr); //Output: Array ( [0] => apple [2] => orange )
?>
$arr = array("apple", "banana", "orange");
array_splice($arr, 1, 1); //Delete the element "banana" with index 1
print_r($arr ); //Output: Array ( [0] => apple [1] => orange )
?>
return $val != "banana"; //过滤掉元素"banana"});
print_r($new_arr) ; //Output: Array ( [0] => apple [2] => orange )
?>
These functions can be used flexibly according to specific needs to achieve the effect of deleting array values. . In actual development, in addition to these functions, there are many other methods that can even more efficiently implement the operation of deleting array values. Developers can choose the appropriate method according to their needs.
The above is the detailed content of What is the php function to delete array values?. For more information, please follow other related articles on the PHP Chinese website!