PHP filters two-dimensional and three-dimensional arrays
<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>);
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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](https://img.php.cn/upload/article/000/887/227/169243040583797.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
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

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

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. 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

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

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

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;//
