search
HomeBackend DevelopmentPHP Tutorialphp中的数组函数学习记录2

1、检查给定的键名或索引是否存在于数组中——array_key_exists

用法:array_key_exists($key(mixed),$input(array))返回TRUE和FALSE

$input_array=array("1"=>"java","op"=>"R","act"=>"python","php","redis");<br />$array=array("sd","wd","gh");<br />var_dump(array_key_exists(1,$array));<br />var_dump(array_key_exists("op",$input_array));

结果:bool(true)   bool(true)

2、返回数组中所有的键名——array_keys

用法:array_keys($input(array)) 返回数组中的键名

$input_array=array("1"=>"java","op"=>"R","act"=>"python","php","redis");<br />$array=array("sd","wd","gh");<br />var_dump(array_keys($array));<br />var_dump(array_keys($input_array));

结果:array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(2) }

array(5) { [0]=> int(1) [1]=> string(2) "op" [2]=> string(3) "act" [3]=> int(2) [4]=> int(3) }

3、将回调函数作用到给定数组的单元上 array_map

用法:array_map(function,array1(array),array2...)感觉这个和过滤函数array_filter理解起来有点类似,array_map可以理解成是一个加工函数,加工方法自己写。

function cube($n){<br />    return($n * $n * $n);<br />}<br />$a = array(1, 2, 3, 4, 5);<br />var_dump(array_map("cube", $a));

结果:array(5){ [0]=> int(1) [1]=> int(8) [2]=> int(27) [3]=> int(64) [4]=> int(125) }

4、合并一个或多个数组—array_merge(就是求并集)

语法:将一个数组中的值附加在另一个数组后面,如果是数字索引,键名会以连续方式重新索引

$input_array=array("1"=>"java","op"=>"R","act"=>"python","php","redis");<br />$array=array("sd","wd","gh");<br />var_dump(array_merge($input_array,$array));

结果:array(8) {[0]=> string(4) "java" ["op"]=> string(1) "R" ["act"]=> string(6) "python" [1]=> string(3) "php" [2]=> string(5) "redis" [3]=> string(2) "sd" [4]=> string(2) "wd" [5]=> string(2) "gh" }

重新索引后键值java的键名由1变成了0

5、递归地合并一个或多个数组——array_merge_recursive

用法:和array_merge一样,只是array_merge是求并集,而array_merge_recursive是实实在在的1+1=2,键值重复不会覆盖,键名重复会自动的合并

$ar1 = array("color" => array("favorite" => "red"), 5,10);<br />$ar2 = array(10, "color" => array("favorite" => "green", "blue"));<br />var_dump(array_merge_recursive($ar1, $ar2));

结果:array(4) { ["color"]=> array(2) { ["favorite"]=> array(2) { [0]=> string(3) "red" [1]=> string(5) "green" } [0]=> string(4) "blue" } [0]=> int(5) [1]=> int(10) [2]=> int(10) }

6、对多个数组或多维数组进行排序 -array_multisort

用法:array_multisort(array1,array2...),成功时返回 TRUE, 或者在失败时返回 FALSE.

$ar1 = array("10", 101, 100, "a");<br />$ar2 = array(1, 3, "2", 1);<br />array_multisort($ar1, $ar2);<br />var_dump($ar1);<br />var_dump($ar2);

结果:

array(4){ [0]=> string(2) "10" [1]=> string(1) "a" [2]=> int(100) [3]=> int(101) } array(4) { [0]=> int(1) [1]=> int(1) [2]=> string(1) "2" [3]=> int(3) }

7、用值将数组填补到指定长度——array_pad

用法:array_pad($input(array),$size(int),mixed) 返回填充的结果

$array1=array(10,20,30);<br />$array2=array('java'=>array('redis','mysql'));<br />var_dump(array_pad($array1,6,'40'));<br />var_dump(array_pad($array2,4,'shell'));

结果:

array(6) { [0]=> int(10) [1]=> int(20) [2]=> int(30) [3]=> string(2) "40" [4]=> string(2) "40" [5]=> string(2) "40" }

array(4) { ["java"]=> array(2) { [0]=> string(5) "redis" [1]=> string(5) "mysql" } [0]=> string(5) "shell" [1]=> string(5) "shell" [2]=> string(5) "shell" }

8、将数组最后一个单元弹出(出栈)——array_pop

用法:array_pop($input(array)) 返回数组的最后一个单元,如果 array 为空(或者不是数组)将返回 NULL

$array1=array(10,20,30);<br />$array2=array();<br />var_dump(array_pop($array1));<br />var_dump(count($array1));<br />var_dump(array_pop($array2));

结果:int(30)  int(2)(数组长度减1)     NULL

9、计算数组中所有值的乘积——array_product

用法:array_product($array),(要求数组中都是数字)

$array1=array(10,20,30);<br />$array2=array(1,'er');<br />$array3=array(10,20,30=>20);<br />var_dump(array_product($array1));<br />var_dump(array_product($array2));<br />var_dump(array_product($array3));

结果:int(6000) int(0) int(4000)

10、将一个或多个单元压入数组的末尾(入栈)——array_push

用法:array_push($array,mixed.....)这个是和array_pop出栈相对应的逐个追加到尾部,返回数组的个数

$array1=array(10,20,30);<br />var_dump(array_push($array1,'erer','weert'));<br />var_dump($array1);

结果:int(5)     array(5) { [0]=> int(10) [1]=> int(20) [2]=> int(30) [3]=> string(4) "erer" [4]=> string(5) "weert" }

11、从数组中随机取出一个或多个单元——array_rand

用法:array_rand($array,$num_rep(int)) 随机从数组中取出多个单元(返回的是键名)

$array1=array(10,20,30,40,50,60);<br />var_dump(array_rand($array1,3));

结果:array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(4)}

12、用回调函数迭代地将数组简化为单一的值——array_reduce

用法:array_reduce($input(array),function,int),将回调函数 function 迭代地作用到 input 数组中的每一个单元中,从而将数组简化为单一的值。如果指定了可选参数 initial,该参数将被当成是数组中的第一个值来处理,或者如果数组为空的话就作为最终返回值

function rsum($v, $w){<br />    $v += $w;<br />    return $v;}<br />function rmul($v, $w){<br />    $v *= $w;<br />    return $v;}<br />$a = array(1, 2, 3, 4, 5);<br />$x = array();<br />var_dump(array_reduce($a, "rsum"));<br />var_dump(array_reduce($a, "rmul", 10));<br />var_dump(\array_reduce($x, "rsum", 1));<br />

结果:int(15) int(1200) int(1)

13、使用传递的数组递归替换第一个数组的元素——array_replace_recursive

用法:array_replace_recursive(array1,array2,array3....)使用后面数组元素的值替换第一个数组 array 的值。如果一个键存在于第一个数组同时也存在于第二个数组,它的值将被第二个数组中的值替换。如果一个键存在于第二个数组,但是不存在于第一个数组,则会在第一个数组中创建这个元素。如果一个键仅存在于第一个数组,它将保持不变。如果传递了多个替换数组,它们将被按顺序依次处理,后面的数组将覆盖之前的值。

14、使用传递的数组替换第一个数组的元素——array_replace

用法:array_replace(array1,array2,......)函数使用后面数组元素的值替换第一个 array 数组的值。如果一个键存在于第一个数组同时也存在于第二个数组,它的值将被第二个数组中的值替换。如果一个键存在于第二个数组,但是不存在于第一个数组,则会在第一个数组中创建这个元素。如果一个键仅存在于第一个数组,它将保持不变。如果传递了多个替换数组,它们将被按顺序依次处理,后面的数组将覆盖之前的值。

$base = array('citrus' => array( "orange") , 'berries' => array("blackberry", "raspberry"), );<br />$replacements = array('citrus' => array('pineapple'), 'berries' => array('blueberry'));<br />$basket = array_replace_recursive($base, $replacements);<br />print_r($basket);<br />$basket = array_replace($base, $replacements);<br />print_r($basket);<br />

结果:Array ( [citrus] => Array ( [0] => pineapple ) [berries] => Array ( [0] => blueberry [1] => raspberry ) )

Array([citrus] => Array ( [0] => pineapple ) [berries] => Array ( [0] => blueberry ) )

15、返回一个单元顺序相反的数组——array_reverse

用法:array_reverse($array,)参数TRUE为保留原来的键名

$input  = array("php", 4.0, array("green", "red"),'a'=>'b');<br />var_dump(array_reverse($input));<br />var_dump(array_reverse($input, TRUE));

结果:array(4) { ["a"]=> string(1) "b" [0]=> array(2) { [0]=> string(5) "green" [1]=> string(3) "red" } [1]=> float(4) [2]=> string(3) "php" }

array(4) { ["a"]=> string(1) "b" [2]=> array(2) { [0]=> string(5) "green" [1]=> string(3) "red" } [1]=> float(4) [0]=> string(3) "php" }

16、在数组中搜索给定的值,如果成功则返回相应的键名——array_search,失败返回FALSE

用法:array_search(mixed,$array)

$input  = array(1=>"php", 2=>'java',3=>'mysql','a'=>'b');<br />var_dump(array_search('php',$input));<br />var_dump(array_search('b',$input));

结果:int(1)  string(1) "a"

17、将数组开头的单元移出数组——array_shift      作用类似于指针

用法:array_shift(array);将 array 的第一个单元移出并作为结果返回,将 array 的长度减一并将所有其它单元向前移动一位。所有的数字键名将改为从零开始计数,文字键名将不变。如果 array 为空(或者不是数组),则返回 NULL

$input  = array(1=>"php", 2=>'java',3=>'mysql','a'=>'b');<br />var_dump(array_shift($input));<br />var_dump($input);

结果:string(3) "php"

array(3) { [0]=> string(4) "java" [1]=> string(5) "mysql" ["a"]=> string(1) "b" }

18、从数组中取出一段——array_slice

用法:array_slice(array,offset(int),length(int),),如果加上参数TRUE不会重制数组的键

$input = array("a", "b", "c", "d", "e");<br />print_r(array_slice($input, 2, -1));<br />print_r(array_slice($input, 2, -1, true));

结果:Array ( [0] => c [1] => d ) Array ( [2] => c [3] => d )

19、把数组中的一部分去掉并用其它值取代 ——array_splice

array_splice($input(array),$offset(int),$length(int),$replace(array))

把 input 数组中由 offset 和 length 指定的单元去掉,如果提供了 replacement 参数,则用 replacement 数组中的单元取代。返回一个包含有被移除单元的数组。注意 input 中的数字键名不被保留。如果 offset 为正,则从 input 数组中该值指定的偏移量开始移除。如果 offset 为负,则从 input 末尾倒数该值指定的偏移量开始移除。

如果省略 length,则移除数组中从 offset 到结尾的所有部分。如果指定了 length 并且为正值,则移除这么多单元。如果指定了 length 并且为负值,则移除从 offset 到数组末尾倒数 length 为止中间所有的单元。小窍门:当给出了 replacement 时要移除从 offset 到数组末尾所有单元时,用 count($input) 作为 length。

如果给出了 replacement 数组,则被移除的单元被此数组中的单元替代。如果 offset 和 length 的组合结果是不会移除任何值,则 replacement 数组中的单元将被插入到 offset 指定的位置。注意替换数组中的键名不保留。如果用来替换的值只是一个单元,那么不需要给它加上 array(),除非该单元本身就是一个数组。

<?php<br />$input1 = array("red", "green", "blue", "yellow");<br />array_splice($input1, 2);<br />var_dump($input1);<br />$input2 = array("red", "green", "blue", "yellow");<br />array_splice($input2, 1, -1);<br />var_dump($input2);<br />$input3 = array("red", "green", "blue", "yellow");<br />array_splice($input3, 1, count($input3), "orange");<br />var_dump($input3);<br />$input4 = array("red", "green", "blue", "yellow");<br />array_splice($input4, -1, 1, array("black", "maroon"));<br />var_dump($input4);<br />$input5 = array("red", "green", "blue", "yellow");<br />array_splice($input5, 3, 0, "purple");<br />var_dump($input5);

array(2) { [0]=> string(3) "red" [1]=> string(5) "green" }

array(2) { [0]=> string(3) "red" [1]=> string(6) "yellow" }

array(2) { [0]=> string(3) "red" [1]=> string(6) "orange" }

array(5) { [0]=> string(3) "red" [1]=> string(5) "green" [2]=> string(4) "blue" [3]=> string(5) "black" [4]=> string(6) "maroon" }

array(5) { [0]=> string(3) "red" [1]=> string(5) "green" [2]=> string(4) "blue" [3]=> string(6) "purple" [4]=> string(6) "yellow" }

20、计算数组中所有值的和——array_sum

用法:array_num(array)(number)

<?php<br />$a = array(2, 4, 6, 8);<br />$b = array("a" => 1.2, "b" => 2.3, "c" => 3.4);<br />var_dump(array_sum($a));<br />var_dump(array_sum($b));

结果:int(20) float(6.9)

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
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

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.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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),