search
HomeBackend DevelopmentPHP TutorialA complete collection of php array operation methods

If you are still looking for how to operate PHP arrays, you must not miss this article. It is the most comprehensive PHP array operation method. I hope it will be helpful to everyone.

1. Basic functions Key name and value of array array_values($arr); Get the values ​​of the array array_keys($arr); Get the key name of the array array_flip($arr); The values ​​in the array are interchanged with the key names (if there are duplicates, the previous ones will be overwritten by the later ones) in_array("apple",$arr);Retrieve apple in array array_search("apple",$arr); Retrieve apple in the array, return the key name if it exists array_key_exists("apple",$arr); Retrieve whether the given key name exists in the array isset($arr[apple]): Retrieve whether the given key name exists in the array

Internal pointer of array current($arr); returns the current cell in the array pos($arr); returns the current unit in the array key($arr); returns the key name of the current unit in the array prev($arr); rewind the internal pointer in the array by one bit next($arr); moves the internal pointer in the array forward one position end($arr); points the internal pointer in the array to the last element reset($arr; points the internal pointer in the array to the first element each($arr); will return a constructed array of key names/values ​​of the current element of the array, and move the array pointer forward one bit list($key,$value)=each($arr); Get the key name and value of the current element of the array

Conversion between arrays and variables extract($arr); is used to convert the elements in the array into variables and import them into the current file. The key name is used as the variable name and the value is used as the variable value. Note: (The second parameter is very important, you can refer to the manual for use) Usage echo $a; compact(var1,var2,var3); Create an array with the given variable name

2. Segmentation and filling of arrays Segmentation of arrays array_slice($arr,0,3); you can take out a segment from the array, this function ignores the key name array_splice($arr,0,3,array("black","maroon")); can take out a section of the array. The difference from the previous function is that the returned sequence is deleted from the original array

Split multiple arrays array_chunk($arr,3,TRUE); can split an array into multiple ones, TRUE means retaining the key names of the original array

Padding of arrays array_pad($arr,5,'x'); Pad an array to the specified length

3. Arrays and stacks array_push($arr,"apple","pear"); Push one or more elements into the end of the array stack (push) and return the number of elements pushed into the stack array_pop($arr); Pop the last element of the array stack

4. Array and queue array_shift($arr); The first element in the array is moved out and returned as the result (the length of the array is reduced by 1, other elements are moved forward one position, the numeric key name is changed to zero technology, and the text key name remains unchanged) array_unshift($arr,"a",array(1,2));Insert one or more elements at the beginning of the array

5. Callback function array_walk($arr,'function','words');Use user function to process each member in the array (the third parameter is passed to the callback function function) array_mpa("function",$arr1,$arr2); can handle multiple arrays (when using two or more arrays, their lengths should be the same) array_filter($arr,"function"); Use the callback function to filter each element in the array. If the callback function is TRUE, the current element of the array will be included in the returned result array, and the key name of the array remains unchanged. array_reduce($arr,"function","*");Convert to a single-valued function (* is the first value of the array)

6. Sorting of arrays Sort array by element value sort($arr); Sort from small to large (the second parameter is the sorting method) and ignore the array sorting of key names. rsort($arr); Sort from large to small (the second parameter is the sorting method), ignoring the array sorting of key names usort($arr,"function"); uses a user-defined comparison function to sort the values ​​in the array (there are two parameters in the function, 0 means equal, a positive number means the first one is greater than the second one, and a negative number means the second one is greater than the second one. one is smaller than the second) array sorting ignoring key names asort($arr); Sort from small to large (the second parameter is the sorting method) and preserve the array sorting of key names. arsort($arr); Sort from large to small (the second parameter is the sorting method) and preserve the array sorting of key names. uasort($arr,"function"); uses a user-defined comparison function to sort the values ​​in the array (there are two parameters in the function, 0 means equal, a positive number means the first one is greater than the second one, and a negative number means the second one is greater than the second one. one smaller than the second) array sorting preserving key names

Sort array by key name ksort($arr); sort by key name in positive order krsort($arr); Sort by key name in reverse order uksort($arr,"function"); uses a user-defined comparison function to sort the key names in the array (there are two parameters in the function, 0 means equal, a positive number means the first one is greater than the second one, a negative number means The first one is smaller than the second one)

Natural sorting method natsort($arr); natural sorting (ignoring key names) natcasesort($arr);Natural sorting (ignore case, ignore key name)

7. Calculation of arrays Sum of array elements array_sum($arr); performs sum operation on all elements inside the array

Merge of arrays array_merge($arr1,$arr2); Merge two or more arrays (the same string key name, the latter one overwrites the previous one, the same numeric key name, the latter one will not be overwritten, but will be appended to the end) "+"$arr1+$arr2; for the same key name, only the latter one is retained array_merge_recursive($arr1,$arr2); Recursive merge operation, if there are the same string key names in the array, these values ​​will be merged into one array. If a value itself is an array, it will be merged into another array according to the corresponding key name. When arrays have the same array key name, the latter value will not overwrite the original value, but will be appended to the end

Difference of arrays array_diff($arr1,$arr2); returns the difference result array array_diff_assoc($arr1,$arr2,$arr3); returns an array of difference set results, and the key names are also compared

Intersection of arrays array_intersect($arr1,$arr2); returns the intersection result array array_intersect_assoc($arr1,$arr2); returns an array of intersection results, and the key names are also compared

8. Other array functions range(0,12);Creates an array containing cells in the specified range array_unique($arr); remove duplicate values ​​in the array, and the original key names will be retained in the new array array_reverse($arr,TRUE); Returns an array with the order of cells reversed to the original array. If the second parameter is TRUE, the original key names are retained. //srand((float)microtime()*10000000); Random seed trigger array_rand($arr,2); Randomly remove one or more elements from the array shuffle($arr); shuffle the order of the array Functions of this class allow many ways to manipulate and interact with arrays. The essence of an array is to store, manage and operate a set of variables. PHP supports one- and multi-dimensional arrays, which can be created by the user or by another function. There are specific database handling functions that generate arrays from database queries, and there are functions that return arrays.

array_change_key_case — Returns an array whose string keys are all lowercase or uppercase array_chunk — split an array into multiple array_combine — Create an array with values ​​from one array as keys and values ​​from another array as values array_count_values ​​— Count the number of occurrences of all values ​​in an array array_diff_assoc — Compute the difference of an array with index checking array_diff_key — Compute the difference of an array using key comparison array_diff_uassoc — Compute the difference of an array using a user-supplied callback function with index checking array_diff_ukey — Calculate the difference of an array using a callback function to compare keys array_diff — Compute the difference of an array array_fill_keys — Fill an array with values, specifying keys array_fill — Fill an array with given values array_filter — Filter elements in an array using a callback function array_flip — swap keys and values ​​in an array array_intersect_assoc — Compute the intersection of arrays with index checking array_intersect_key — Compute the intersection of arrays using key comparison array_intersect_uassoc — Computes the intersection of arrays with index checking, using a callback function to compare the indices array_intersect_ukey — Compute the intersection of arrays using callback functions to compare keys array_intersect — Compute the intersection of arrays array_key_exists — Check if a given key or index exists in an array array_keys — Returns all keys in an array array_map — apply a callback function to the elements of the given array array_merge_recursive — Merge one or more arrays recursively array_merge — merge one or more arrays array_multisort — Sort multiple arrays or multidimensional arrays array_pad — Pad an array to a specified length with values array_pop — Pop the last element of the array (pop it off the stack) array_product — Calculate the product of all values ​​in an array array_push — Push one or more elements to the end of an array (push) array_rand — Randomly remove one or more elements from an array array_reduce — Iteratively reduce an array to a single value using a callback function array_reverse — Returns an array with the elements in reverse order array_search — Search for a given value in an array, returning the corresponding key if successful array_shift — Shift elements at the beginning of an array out of the array array_slice — Remove a segment from an array array_splice — Remove part of an array and replace it with another value array_sum — Calculates the sum of all values ​​in an array array_udiff_assoc — Computes the difference of an array with index checking and compares the data using a callback function array_udiff_uassoc — Computes the difference of an array with index checking, using a callback function to compare the data and index array_udiff — Calculate the difference of an array by comparing data using a callback function array_uintersect_assoc — Compute the intersection of arrays with index checking and compare data using callback functions array_uintersect_uassoc — Computes the intersection of arrays with index checking, using a callback function to compare data and indexes array_uintersect — Calculate the intersection of arrays, using callback functions to compare data array_unique — Remove duplicate values ​​from an array array_unshift — Insert one or more cells at the beginning of an array array_values ​​— Returns all values ​​in an array array_walk_recursive — Recursively apply a user function to each member of an array array_walk — Apply a user function to each member of an array array — create a new array arsort — Sort an array in reverse order while maintaining index relationships asort — Sort an array while maintaining index relationships compact — Create an array including variable names and their values count — Count the number of elements in an array or the number of attributes in an object current — Returns the current element in the array each — Returns the current key/value pair in the array and moves the array pointer forward one step end — Set the internal pointer of the array to the last element extract — Import variables from an array into the current symbol table in_array — Check whether a value exists in an array key — get the key name from an associative array krsort — sort an array in reverse order by key ksort — Sort an array by key list — assign values ​​from an array to variables natcasesort — Case-insensitive sorting of an array using the "natural sort" algorithm natsort — Sort an array using the "natural sorting" algorithm next — Move the internal pointer in the array forward one position pos — alias for current() prev — rewind the array’s internal pointer one bit range — Create an array containing cells in a specified range reset — Set the array's internal pointer to the first element rsort — Sort an array in reverse order shuffle — shuffle an array sizeof — Alias ​​for count() sort — sort an array uasort — Sort values ​​in an array using a user-defined comparison function and maintain index association uksort — Sort keys in an array using a user-defined comparison function usort — Sort values ​​in an array using a user-defined comparison function

Use arrays In the previous chapters, the variables we introduced were all scalar variables, which can only store a single piece of data. An array is a variable that can store a set or series of values. An array can have many elements. Each element has a value, such as text, a number, or another array. An array that contains other arrays is called a multidimensional array.



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
PHP: An Introduction to the Server-Side Scripting LanguagePHP: An Introduction to the Server-Side Scripting LanguageApr 16, 2025 am 12:18 AM

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

PHP and the Web: Exploring its Long-Term ImpactPHP and the Web: Exploring its Long-Term ImpactApr 16, 2025 am 12:17 AM

PHP has shaped the network over the past few decades and will continue to play an important role in web development. 1) PHP originated in 1994 and has become the first choice for developers due to its ease of use and seamless integration with MySQL. 2) Its core functions include generating dynamic content and integrating with the database, allowing the website to be updated in real time and displayed in personalized manner. 3) The wide application and ecosystem of PHP have driven its long-term impact, but it also faces version updates and security challenges. 4) Performance improvements in recent years, such as the release of PHP7, enable it to compete with modern languages. 5) In the future, PHP needs to deal with new challenges such as containerization and microservices, but its flexibility and active community make it adaptable.

Why Use PHP? Advantages and Benefits ExplainedWhy Use PHP? Advantages and Benefits ExplainedApr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

Debunking the Myths: Is PHP Really a Dead Language?Debunking the Myths: Is PHP Really a Dead Language?Apr 16, 2025 am 12:15 AM

PHP is not dead. 1) The PHP community actively solves performance and security issues, and PHP7.x improves performance. 2) PHP is suitable for modern web development and is widely used in large websites. 3) PHP is easy to learn and the server performs well, but the type system is not as strict as static languages. 4) PHP is still important in the fields of content management and e-commerce, and the ecosystem continues to evolve. 5) Optimize performance through OPcache and APC, and use OOP and design patterns to improve code quality.

The PHP vs. Python Debate: Which is Better?The PHP vs. Python Debate: Which is Better?Apr 16, 2025 am 12:03 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on the project requirements. 1) PHP is suitable for web development, easy to learn, rich community resources, but the syntax is not modern enough, and performance and security need to be paid attention to. 2) Python is suitable for data science and machine learning, with concise syntax and easy to learn, but there are bottlenecks in execution speed and memory management.

PHP's Purpose: Building Dynamic WebsitesPHP's Purpose: Building Dynamic WebsitesApr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP: Handling Databases and Server-Side LogicPHP: Handling Databases and Server-Side LogicApr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO)How do you prevent SQL Injection in PHP? (Prepared statements, PDO)Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

See all articles

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)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.