Home  >  Article  >  Backend Development  >  How to delete elements from array in php

How to delete elements from array in php

PHPz
PHPzOriginal
2023-04-25 18:22:121523browse

In PHP application development, arrays are a very common data structure type. However, sometimes we need to remove certain elements in the array for better data management in the application. This article will explore the different ways to delete elements from an array in PHP.

Method 1: Use the unset() function

The unset() function is one of PHP's built-in functions, which can be used to delete a single element in a PHP array. The format for using this function is as follows:

unset($arrayName[key]);

"arrayName" is the associative array of elements that need to be deleted, and "key" is the key value of the element that needs to be deleted.

For example, if we have an array containing the following elements:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
?>

If you want to remove the "banana" element from this array, you can use the following code:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
    unset($array[1]);
?>

Above The code will delete the element "banana" with index 1. If we want to delete an element in an associative array, we can use the following code:

<?php
    $array = array("apple" => 5, "banana" => 8, "cherry" => 3, "date" => 9, "elderberry" => 10);
    unset($array["banana"]);
?>

The above code will delete the key "banana" of the element and its value is 8.

Method 2: Use array_splice()

The array_splice() function is used to delete elements and return the deleted element value. However, it should be noted that the array_splice() function only works with numerically indexed arrays. In associative arrays it doesn't work properly.

The format for using this function is as follows:

array_splice($array, $offset, $length, $replacement);

"array" is the array that needs to be operated, "offset" is where to start deleting, "length" is the number of elements that need to be deleted, "replacement" " is the element to be inserted into the array (optional).

For example, if we have the following numerically indexed array:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
?>

To remove the "banana" element from this array, you can use the following code:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
    array_splice($array, 1, 1);
?>

The above code will remove The element "banana" with index 1. At this time the array will become:

Array
(
    [0] => apple
    [1] => cherry
    [2] => date
    [3] => elderberry
)

Method 3: Use array_diff()

The array_diff() function is used to compare two arrays and return the differences. The format for using this function is as follows:

array array_diff($array1, $array2);

"array1" is the array that needs to be operated, and "array2" is the value that needs to be deleted. This function returns a new array consisting of elements from "array1" that do not appear in "array2".

For example, if we have the following numerically indexed array:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
?>

To remove the "banana" element from this array, you can use the following code:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
    $array = array_diff($array, array("banana"));
?>

The above code will remove Element with value "banana". At this time the array will become:

Array
(
    [0] => apple
    [1] => cherry
    [2] => date
    [3] => elderberry
)

Method 4: Use array_filter()

The array_filter() function is used to filter the array and return a new array containing elements that meet the conditions. You can use this function to filter out the elements you want to delete.

The format for using this function is as follows:

array array_filter($array, callable $callback = null, $flag = 0);

"array" is the array that needs to be filtered, and "callback" is an optional parameter used to define the filter function. This filter function must return a boolean value. If false is returned, the element will be removed from the result. If the $flag parameter is not provided, the function will maintain the array index.

For example, if we have the following numerically indexed array:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
?>

To remove the "banana" element from this array, you can use the following code:

<?php
    $array = array("apple", "banana", "cherry", "date", "elderberry");
    $array = array_filter($array, function($value) {
        return $value != "banana";
    });
?>

The above code will remove Element with value "banana". At this point the array will become:

Array
(
    [0] => apple
    [2] => cherry
    [3] => date
    [4] => elderberry
)

Summary:

Removing elements from an array is a common task in PHP development. In this article, we introduced four ways to remove elements from an array in PHP: using the unset() function, using the array_splice() function, using the array_diff() function, and using the array_filter() function. With these technologies, developers can better manage data and arrays in their applications.

The above is the detailed content of How to delete elements from array in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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