Home Backend Development PHP Tutorial PHP filters two-dimensional and three-dimensional arrays

PHP filters two-dimensional and three-dimensional arrays

Jul 29, 2016 am 08:58 AM
arr array filter function

<span> 1</span> <?<span>php
</span><span> 2</span><span> 3</span><span>$arr</span> =<span> [
</span><span> 4</span>         [1,3,5,7,9],
<span> 5</span>         [2,4,6,8,0<span>]
</span><span> 6</span><span>    ];
</span><span> 7</span><span>$arr2</span> =<span> [
</span><span> 8</span>         'list' =><span> [
</span><span> 9</span>             [1,3,5,7],
<span>10</span>             [2,4,6,8],
<span>11</span>             [3,2,9,0],
<span>12</span><span>        ]
</span><span>13</span><span>    ];
</span><span>14</span><span>$arr3</span> =<span> [
</span><span>15</span>         'list' =><span> [
</span><span>16</span>             [1,3,5,7],
<span>17</span>             [2,4,6,8],
<span>18</span>             [3,2,9,0<span>]
</span><span>19</span><span>        ]
</span><span>20</span><span>    ];
</span><span>21</span><span>22</span><span>$res</span> = <span>array_map</span>(<span>function</span>(<span>$arr</span><span>){
</span><span>23</span><span>return</span><span>array_filter</span>(<span>$arr</span>, <span>function</span>(<span>$v</span><span>) {
</span><span>24</span><span>return</span><span>$v</span> !== 5<span>;
</span><span>25</span><span>        });
</span><span>26</span>     }, <span>$arr</span><span>);
</span><span>27</span><span>28</span><span>$res2</span> = <span>array_map</span>(<span>function</span>(<span>$val</span><span>) {
</span><span>29</span><span>return</span><span>array_filter</span>(<span>$val</span>, <span>function</span>(<span>$v</span><span>) {
</span><span>30</span><span>return</span> !<span>in_array</span>(6, <span>$v</span><span>);
</span><span>31</span><span>        });
</span><span>32</span>     }, <span>$arr2</span><span>);
</span><span>33</span><span>34</span><span>$res3</span> =<span> [];
</span><span>35</span><span>array_walk</span>(<span>$arr3</span>, <span>function</span>(<span>$val</span>, <span>$key</span>) <span>use</span>(&<span>$res3</span><span>) {
</span><span>36</span><span>$res3</span>[<span>$key</span>] = <span>array_filter</span>(<span>$val</span>, <span>function</span>(<span>$v</span><span>) {
</span><span>37</span><span>return</span> !<span>in_array</span>(6, <span>$v</span><span>);
</span><span>38</span><span>        });
</span><span>39</span><span>    });
</span><span>40</span><span>41</span><span>var_dump</span>(<span>$res2</span><span>);
</span><span>42</span><span>var_dump</span>(<span>$res3</span>);
Copy after login

The above introduces PHP filtering two-dimensional arrays and three-dimensional arrays, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does function mean? What does function mean? Aug 04, 2023 am 10:33 AM

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

How to solve the '[Vue warn]: Failed to resolve filter' error How to solve the '[Vue warn]: Failed to resolve filter' error Aug 19, 2023 pm 03:33 PM

Methods to solve the "[Vuewarn]:Failedtoresolvefilter" error During the development process using Vue, we sometimes encounter an error message: "[Vuewarn]:Failedtoresolvefilter". This error message usually occurs when we use an undefined filter in the template. This article explains how to resolve this error and gives corresponding code examples. When we are in Vue

Sort array using Array.Sort function in C# Sort array using Array.Sort function in C# Nov 18, 2023 am 10:37 AM

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

What is the purpose of the 'enumerate()' function in Python? What is the purpose of the 'enumerate()' function in Python? Sep 01, 2023 am 11:29 AM

In this article, we will learn about enumerate() function and the purpose of “enumerate()” function in Python. What is the enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumeration object. Enumeration objects are returned as key-value pairs. The key is the index corresponding to each item, and the value is the items. Syntax enumerate(iterable,start) Parameters iterable - The passed in data collection can be returned as an enumeration object, called iterablestart - As the name suggests, the starting index of the enumeration object is defined by start. if we ignore

Detailed explanation of the role and function of the MySQL.proc table Detailed explanation of the role and function of the MySQL.proc table Mar 16, 2024 am 09:03 AM

Detailed explanation of the role and function of the MySQL.proc table. MySQL is a popular relational database management system. When developers use MySQL, they often involve the creation and management of stored procedures (StoredProcedure). The MySQL.proc table is a very important system table. It stores information related to all stored procedures in the database, including the name, definition, parameters, etc. of the stored procedures. In this article, we will explain in detail the role and functionality of the MySQL.proc table

Simple and clear method to use PHP array_merge_recursive() function Simple and clear method to use PHP array_merge_recursive() function Jun 27, 2023 pm 01:48 PM

When programming in PHP, we often need to merge arrays. PHP provides the array_merge() function to complete array merging, but when the same key exists in the array, this function will overwrite the original value. In order to solve this problem, PHP also provides an array_merge_recursive() function in the language, which can merge arrays and retain the values ​​of the same keys, making the program design more flexible. array_merge

How to use the array_combine function in PHP to combine two arrays into an associative array How to use the array_combine function in PHP to combine two arrays into an associative array Jun 26, 2023 pm 01:41 PM

In PHP, there are many powerful array functions that can make array operations more convenient and faster. When we need to combine two arrays into an associative array, we can use PHP's array_combine function to achieve this operation. This function is actually used to combine the keys of one array as the values ​​of another array into a new associative array. Next, we will explain how to use the array_combine function in PHP to combine two arrays into an associative array. Learn about array_comb

What is the principle and registration method of filter in Springboot What is the principle and registration method of filter in Springboot May 11, 2023 pm 08:28 PM

1. Filter First look at the location of the filter of the web server. Filter is a chain connected before and after. After the previous processing is completed, it is passed to the next filter for processing. 1.1Filter interface definition publicinterfaceFilter{//Initialization method, only executed once in the entire life cycle. //Filtering services cannot be provided until the init method is successfully executed (failure such as throwing an exception, etc.). //The parameter FilterConfig is used to obtain the initialization parameter publicvoidinit(FilterConfigfilterConfig)throwsServletException;//

See all articles