php array delete value

WBOY
Release: 2023-05-23 14:21:08
Original
500 people have browsed it

PHP array is a very common data structure, used in almost every PHP program. Arrays provide a simple and convenient way to store and access data. However, in daily programming, we often need to delete certain values ​​​​from arrays. This article will introduce how to delete values ​​​​from PHP arrays.

Method 1: Use the unset function

Using the unset function is a simple and effective way to delete array values ​​in PHP. The syntax of this function is as follows:

unset(array[key]);
Copy after login

Among them, array represents the array of values ​​to be deleted, and key represents the key of the value to be deleted.

Code example:

$fruits = array("apple", "banana", "cherry", "date");
unset($fruits[2]);
print_r($fruits);
Copy after login

Output result:

Array ( [0] => apple [1] => banana [3] => date )
Copy after login
Copy after login

In this example, the unset function deletes the element with the value "cherry" from the $fruits array.

Method 2: Use array_splice function

The array_splice function is another way to delete array values ​​in PHP. The syntax of this function is as follows:

array_splice(array,start,length,array2);
Copy after login

Among them, array represents the array being operated on, start represents the position from which to delete, length represents how many elements to delete, and array2 is an optional parameter, indicating the replacement of deleted elements.

Code example:

$fruits = array("apple", "banana", "cherry", "date");
array_splice($fruits, 2, 1);
print_r($fruits);
Copy after login

Output result:

Array ( [0] => apple [1] => banana [2] => date )
Copy after login

In this example, the array_splice function removes the element with the value "cherry" from the $fruits array.

Method 3: Use array_diff function

The array_diff function is the third method to delete array values ​​in PHP. The syntax of this function is as follows:

array_diff(array1,array2,array3,...);
Copy after login

Among them, array1, array2, array3, etc. represent the arrays to be compared, and the function returns the values ​​that appear in array1 but not in other arrays.

Code example:

$fruits = array("apple", "banana", "cherry", "date");
$fruits = array_diff($fruits, ["cherry"]);
print_r($fruits);
Copy after login

Output result:

Array ( [0] => apple [1] => banana [3] => date )
Copy after login
Copy after login

In this example, the array_diff function removes the element with the value "cherry" from the $fruits array.

Summary:

The above three methods can all achieve the operation of deleting values ​​from PHP arrays, but their implementation methods are different. Using the unset function is a simple and practical method, but it can only delete one element. Multiple elements can be removed using the array_splice function, and the removed elements can be replaced with other elements. Use the array_diff function to compare multiple arrays and return values ​​that appear in one of the arrays but not in the others.

The above is the author's introduction to three common methods of deleting values ​​from PHP arrays. Readers can choose the appropriate method according to their own needs. At the same time, you also need to pay attention to issues such as array out-of-bounds when programming to avoid unnecessary errors.

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