Delete specified index value from php array

王林
Release: 2023-05-07 13:16:07
Original
769 people have browsed it

In PHP, array is a commonly used data type. In daily development, we often need to operate on arrays, such as deleting certain elements in the array. In some cases, we need to delete the specified index value in the array, PHP provides a variety of methods to achieve this function. This article will introduce how to delete a specified index value in an array in PHP.

  1. unset function

The unset function in PHP is used to destroy a variable, including a single element of an array. It is very simple to delete a specified index value in an array through the unset function. The specific method is as follows:

$arr = array(0 => 'a', 1 => 'b', 2 => 'c', 3 => 'd', 4 => 'e'); unset($arr[2]); // 删除索引值为2的元素 print_r($arr);
Copy after login

In the above code, we define an array $arr and output it. The output result is: Array ( [0] => a [1] => b [3] => d [4] => e ). We use the unset function to delete the element with index value 2, and then use the print_r function to output the final array. As you can see, the element with index 2 in the array has been deleted.

  1. array_splice function

array_splice function can be used to insert or delete elements in an array, and can also be used to delete a specified index value in an array. The specific method is as follows:

$arr = array(0 => 'a', 1 => 'b', 2 => 'c', 3 => 'd', 4 => 'e'); array_splice($arr, 2, 1); // 删除索引值为2的元素 print_r($arr);
Copy after login

In the above code, we define an array $arr and output it. The output result is: Array ( [0] => a [1] => b [2] => d [3] => e ). We use the array_splice function to delete the element with index value 2, and then use the print_r function to output the final array. As you can see, the element with index 2 in the array has been deleted.

It should be noted that the first parameter of the array_splice function is the array to be operated on, the second parameter is the starting position of the element to be deleted, and the third parameter is the number of elements to be deleted (if is an inserted element, it represents the number of elements to be inserted).

  1. array_diff_key function

array_diff_key function can be used to compare the key values of two arrays and return an array containing the key values that exist in the first array, but in Key-value pairs that do not exist in other arrays. Through this function, we can also delete the specified index value in the array. The specific method is as follows:

$arr = array(0 => 'a', 1 => 'b', 2 => 'c', 3 => 'd', 4 => 'e'); $indexes_to_delete = array(2, 4); // 需要删除的索引值 $result = array_diff_key($arr, array_flip($indexes_to_delete)); print_r($result);
Copy after login

In the above code, we first define an array $arr and output it; then define an array $indexes_to_delete, which contains the index values that need to be deleted; then use the array_flip function Flip the $indexes_to_delete array, converting its keys into values, thereby forming a new array for calling the array_diff_key function. Finally, use the array_diff_key function to compare and get the final array. The output result is: Array ([0] => a [1] => b [3] => d ). As you can see, the elements with index values 2 and 4 in the array have been deleted.

It should be noted that the first parameter of the array_diff_key function is the array to be operated on, and the second parameter is the array to be compared, that is, the array containing the index value to be deleted, and its key name will be used for comparison. .

Of course, this is just one way to delete the index value in the array. According to actual needs, there are other more flexible ways to achieve the same effect. In summary, deleting a specified index value from an array is not a difficult task in PHP.

The above is the detailed content of Delete specified index value from php array. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!