How to delete a row of a two-dimensional array in php

PHPz
Release: 2023-04-26 10:47:16
Original
800 people have browsed it

In PHP, a two-dimensional array is a common data type. It contains multiple elements, and each element contains multiple key-value pairs. In some cases, we need to delete specific rows from a two-dimensional array. In this case, we can use some of PHP's built-in functions and syntax to achieve this. This article will discuss how to delete a row of a two-dimensional array using PHP.

First, we need to understand the basic structure of a two-dimensional array. A simple two-dimensional array can be written in the following form:

$array = array(
     array("name" => "Tom", "age" => 20),
     array("name" => "Jane", "age" => 25),
     array("name" => "Peter", "age" => 30)
);
Copy after login

In the above example, the array $array contains three elements, each element is a key-value pair containing "name" and "age" array. Now, we want to delete one of the rows, such as the second row, which is the array containing "Jane" and "25". We can use the following syntax:

unset($array[1]);
Copy after login

This statement will delete the array $ The second element in array is removed from the array. Of course, if we want to delete another element, we only need to use the numeric index value (subscript) of the element as the parameter of the unset() function.

The above method is valid for two-dimensional arrays with only numerical indexes, but if the two-dimensional array is indexed with strings, then deleting rows needs to operate according to the string index value. For example, if the structure of the two-dimensional array is like this:

$array = array(
     "Tom" => array("age" => 20),
     "Jane" => array("age" => 25),
     "Peter" => array("age" => 30)
);
Copy after login

You need to use the unset() function to delete elements, which is different from the way of deleting using numerical indexes above. As follows:

unset($array["Jane"]);
Copy after login

This statement will delete the element with the key name "Jane" from the array.

In addition to using the unset() function to directly delete rows, you can also use the array_splice() function to "dig" a row out of the array and then delete it. As follows:

$index = array_search("Jane", array_column($array, "name")); //获取包含"Jane"的数组元素下标
array_splice($array, $index, 1); //从数组中删除该元素
Copy after login

This statement first uses the array_column() function to get the values ​​corresponding to all "name" keys in the array $array, and then uses the array_search() function to get the subscript value of the array element. Finally, use the array_splice() function to remove the element containing "Jane" from the array.

In addition, if the row to be deleted is not a single element, but a batch of elements, you can use foreach to loop through the array and delete all rows that meet the conditions. As follows:

foreach ($array as $key => $value) {
     if ($value["name"] == "Peter") {
          unset($array[$key]);
     }
}
Copy after login

This statement detects all elements in the array whose "name" key value is equal to "Peter", and then uses the unset() function to delete them from $array.

In addition to the above methods, you can also use a variety of other built-in functions or custom functions to operate on two-dimensional arrays to achieve the operation of deleting specific rows. In short, PHP's array operations are relatively flexible and provide a variety of methods, which can be selected according to specific needs.

The above is the detailed content of How to delete a row of a two-dimensional array in php. 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!