php delete array key

王林
Release: 2023-05-06 10:53:07
Original
435 people have browsed it

Over time, array handling has become a difficult problem for PHP programmers. A PHP array is an ordered map that holds a set of key-value pairs. Sometimes in our projects we need to delete certain array elements or keys. In this article, we will cover various ways to delete array keys in PHP.

  1. Use the unset function

The unset function is used to destroy the specified variable, which is usually used to release memory. In PHP, you can use the unset function to delete array elements or keys:

$array = array('name' => 'Tom', 'age' => 25, 'gender' => 'male'); unset($array['name']); print_r($array);
Copy after login

The output result is:

Array ( [age] => 25 [gender] => male )
Copy after login
Copy after login
Copy after login
Copy after login

In the above code, the unset function deletes the name key and value in the array .

If you want to delete the entire array, you can use the unset function and set it to NULL:

unset($array); $array = NULL;
Copy after login
  1. Use the array_splice function

The array_splice function can be deleted Certain elements of the array, and if necessary, moves other elements to new locations.

$array = array('name' => 'Tom', 'age' => 25, 'gender' => 'male'); array_splice($array, 0, 1); print_r($array);
Copy after login

The output result is:

Array ( [age] => 25 [gender] => male )
Copy after login
Copy after login
Copy after login
Copy after login

In the above code, the array_splice function deletes the first element in the array (that is, the element with the key name).

  1. Use the array_filter function

The array_filter function can filter array elements and return a new array. It accepts a function as argument and returns the array element for which the function returns true. You can use this function to delete certain elements in the array:

$array = array('name' => 'Tom', 'age' => 25, 'gender' => 'male'); $array = array_filter($array, function($key) { return $key !== 'name'; }, ARRAY_FILTER_USE_KEY); print_r($array);
Copy after login

The output is:

Array ( [age] => 25 [gender] => male )
Copy after login
Copy after login
Copy after login
Copy after login

In the above code, the array_filter function deletes the name element in the array.

  1. Use the unset function and foreach loop

Using the unset function and foreach loop can also delete certain elements in the array:

$array = array('name' => 'Tom', 'age' => 25, 'gender' => 'male'); foreach ($array as $key => $value) { if ($key === 'name') { unset($array[$key]); } } print_r($array);
Copy after login

The output result is :

Array ( [age] => 25 [gender] => male )
Copy after login
Copy after login
Copy after login
Copy after login

In the above code, the foreach loop iterates through each element in the array and checks whether the key is equal to name. If there is a match, use the unset function to remove the element.

Summary

The above are several ways to delete array keys in PHP. Regardless of which method is used, the most appropriate method should be chosen based on the specific situation. When writing your code, you should consider the performance and readability of your code and use the best method to delete an array key or element.

By the way, depending on the specific situation, if you just want to delete a certain key in the array, just use the unset function. If you need to move subsequent elements forward when deleting array elements, you can use the array_splice function. If you need to remove array elements based on a condition, you should use the array_filter function. Finally, if you need to remove elements from a complex data structure, you can use the unset function and the foreach loop.

The above is the detailed content of php delete array key. 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!