Blogger Information
Blog 4
fans 0
comment 2
visits 4075
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP常用数组函数
智仙生
Original
710 people have browsed it

数组的键/值操作:
array_keys()获得数组中的键名
array_values()获取数组中所有元素的值
array_flip()交换数组中的键和值
array_key_exists()检测键名是否位于数组中
array_search()在数组中搜索给定的值并返回键名或索引

数组的拆分、合并:
array_slice()截取数组的一部分
array_merge()数组合并
array_chunk()分割数组

数组的排序:
sort() 以升序对数组排序
rsort() 以降序对数组排序
asort() 根据值,以升序对关联数组进行排序
ksort() 根据键,以升序对关联数组进行排序
arsort() 根据值,以降序对关联数组进行排序
krsort() 根据键,以降序对关联数组进行排序

数组的填充与清除:
array_splice()删除数组中的某一部分并用其它值取代
array_pad()用给定的值填充数组
array_push()在数组尾部插入元素
array_pop()删除数组末尾的元素
array_shift()删除数组开头的元素
array_unshift()在数组开头插入元素
array_fill()以填充数据的方式创建新数组
array_fill_keys()使用指定的键和值来填充数组

数组的计算:
array_sum()计算数组中所有元素的和
array_product()计算数组中所有元素的乘积

其它数组函数:
is_array()判断是否为数组
array_rand()随机获取数组元素
shuffle()随机打乱数组
array_unique()数组去重

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
Author's latest blog post