Blogger Information
Blog 32
fans 2
comment 2
visits 23243
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php数组函数整理总结(0220)
暴风战斧
Original
668 people have browsed it

【作业总结】

官方手册上函数真的好多,想到一句话“PHP 的真正威力源自于它的函数”,看来以后有不会做的需求就该翻手册查函数了!

QQ截图20200326210950.png

【目前重点掌握函数】

array_keys     获取所有键名组成的数组    
array_values     返回数组中所有值组成的数组    
in_array     检查数组中是否存在某个值    
array_unique     删除重复的值    
count     统计元素数量或对象属性数量    
array_count_values     统计所有值的出现频率    
array_sum     对数组中所有值求和    
array_product     计算数组中所有值的乘积    
array_slice     从数组中取出一部分    
array_rand     从数组中随机取出一个或多个元素的键名    
array_replace     使用后面数组的值替换第一个数组的值    
current     获取当前元素的值    
key     获取当前元素的键名    
next     将数组中的内部指针向前移动一位    
prev     将数组的内部指针倒回一位    
end     将数组的内部指针指向最后一个单元    
reset     将数组的内部指针指向第一个单元    
list     将数组中的值赋予一组变量(类似解构赋值)    
implode     将数组元素按指定字符拼装成字符串    
explode     将字符串分割为数组    
extract     将关联数组拆分成变量名值对    
compact     将一组变量名值对拼装成一个关联数组键值对    
array_filter     用回调函数过滤数组中的单元

【PHP官方手册数组函数整理】

B)_}]ZP$0E}61W`_2G2@29I.png

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:这不能算是作业,只能算是笔记整理, 希望多写点案例
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments