Blogger Information
Blog 28
fans 2
comment 0
visits 23323
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php常用的数组函数和字符串函数
背着吉他的女侠
Original
954 people have browsed it

php数组函数

array()  创建数组

array_key_exists()  检查指定键名是否存在于数组

array_keys()  返回数组中的所有键名

array_values()  返回数组中所有的值

array_merge()  把一个或多个数组合并为一个数组

array_pop()  删除数组的最后一个元素(出栈)

array_push()  将一个或多个元素插入数组末尾(入栈)

array_unshift()  在数组开头插入一个或多个元素

array_shift()  删除数组中的首个元素,并返回被删除元素的值

array_rand()  随机的返回一个或多个键

array_reverse()  以相反的顺序返回数组

array_search()  搜索数组中的值并返回键名

array_sum()  返回数组中值的和

array_unique()  删除数组中重复的值

count()  返回数组中元素的个数

end()  将数组指针指向最后一位

in_array()  查看数组中是否存在某值

shuffle()  将数组打乱

array_multisort() 二维数组排序函数

php字符串函数

explode()  把字符串分割成数组

implode()  把数组转换成字符串

md5()  字符串加密

str_replace()  替换字符串中某些字符

str_shuffle()  随机打乱字符串中的所有字符

strlen()  返回字符串的长度

strrev()  反转字符串

substr()  返回字符串的指定部分


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