PHP 基础
PHP 简介
PHP 入门
PHP 语法
PHP 变量
PHP 常量
PHP 输出和打印
PHP 数据类型
PHP 字符串
PHP 运算符
PHP If…Else
PHP Switch…Case
PHP 数组
PHP 数组排序
PHP 循环
PHP 函数
PHP 数学运算
PHP GET 和 POST
PHP 高级
PHP 日期和时间
PHP 包含文件
PHP 文件系统
PHP 解析目录
PHP 文件上传
PHP 文件下载
PHP Cookies
PHP Sessions
PHP 发送邮件
PHP 表单处理
PHP 表单验证
PHP 过滤器
PHP 错误处理
PHP 类和对象
PHP 魔术常量
PHP JSON 解析
PHP 正则表达式
PHP 异常处理
PHP 和 MySQL 数据库
PHP MySQL 简介
PHP MySQL 连接
PHP MySQL Create Database
PHP MySQL Create Table
PHP MySQL Insert
PHP MySQL Prepared
PHP MySQL Last Inserted ID
PHP MySQL Select
PHP MySQL Where
PHP MySQL Limit
PHP MySQL Order By
PHP MySQL Update
PHP MySQL Delete
PHP MySQL CRUD 应用
PHP MySQL Ajax 搜索
PHP MySQL 登录系统
PHP参考
PHP String Functions
PHP Array Functions
PHP File System Functions
PHP Date/Time Functions
PHP Calendar Functions
PHP MySQLi Functions
PHP Filters
PHP Error Levels
PHP常见问题解答
如何在 PHP 中编写注释
如何在 PHP 中删除字符串中的空格
如何在 PHP 中查找字符串中的字符数
如何在 PHP 中查找字符串中的单词数
如何在 PHP 中删除字符串中的特殊字符
如何在 PHP 中替换字符串中的一个单词
如何在 PHP 中对字符串前面追加
如何在 PHP 中对字符串后面追加
如何在 PHP 中从字符串中提取子串
如何在 PHP 中比较两个字符串
如何在 PHP 中获取当前页面的 URL
如何在 PHP 中通过连接数组值创建字符串
如何在 PHP 中将字符串拆分为数组
如何在 PHP 中合并两个字符串
如何在 PHP 中把字符串转换成小写字母
如何在 PHP 中把字符串转换成大写字母
如何在 PHP 中把字符串的第一个字母转换成大写字母
如何在 PHP 中把特殊的 HTML 实体转换回字符
如何在 PHP 中删除字符串开头的空格
如何在 PHP 中删除字符串结尾的空格
如何在 PHP 中新建一行
如何在 PHP 中查找字符串长度
如何在 PHP 中检查变量是否已设置
如何在 PHP 中检查变量是否为空
如何在 PHP 中检查变量是否为NULL
如何在 PHP 中反转字符串
如何在 PHP 中用另一个字符串替换字符串的一部分
如何在 PHP 中计算子串在字符串中出现的次数
如何在 PHP 中计算数组中的所有元素
如何在 PHP 中打印或回显数组的所有值
如何在 PHP 中显示数组的结构和值
如何在 PHP 中颠倒数组的顺序
如何在 PHP 中检查数组中是否存在值
如何在 PHP 中检查数组中是否存在键
如何在 PHP 中删除数组中的最后一个元素
如何从 PHP 数组中删除第一个元素
如何在 PHP 中为数组的开头添加元素
如何在 PHP 中为数组的末尾添加元素
如何在 PHP 中把两个或多个数组合并成一个数组
如何在 PHP 中按字母顺序对数组值排序
如何在 PHP 中删除数组中的重复值
如何在 PHP 中随机调整数组的顺序
如何在 PHP 中比较两个数组的值
如何在 PHP 中计算数组中数值的总和
如何在 PHP 中删除数组中的空值
如何在 PHP 中用数组值填充下拉列表
如何在 PHP 中获取关联数组的所有键值
如何在 PHP 中获取关联数组的所有值
如何在 PHP 中按键对关联数组排序
如何在 PHP 中按值对关联数组排序
如何在 PHP 中从数组中获取单个值
如何在 PHP 中循环浏览多维数组
如何在 PHP 中从数组中删除元素
如何在 PHP 中检查字符串是否包含特定单词
如何在 PHP 中获取当前日期和时间
如何在 PHP 中进行重定向
如何在 PHP 中删除字符串中的所有空格
如何用 PHP 获取当前年份
如何在 PHP 中将日期从 yyyy-mm-dd 转换为 dd-mm-yyyy 格式
如何在 PHP 中将字符串转换为数字
如何在 PHP 中获取数组的第一个元素
如何在 PHP 中将日期转换为时间戳
如何在 PHP 中为空数组添加元素
如何在 PHP 中把整数转换成字符串
如何用值而不是键删除 PHP 数组元素
如何在 PHP 中将键和值同时推入数组
如何使用 PHP 定期刷新页面
如何从 PHP 字符串中删除最后一个字符
如何从 PHP 脚本返回 JSON
如何让 PHP 显示错误
PHP Array Functions - php7基础教程 - 笔下光年
网站首页
PHP Array Functions
The following section contains a list of PHP array functions along with a brief description. ## PHP Array Functions Here is a complete list of array functions belonging to the latest PHP 7. These functions are the part of the PHP core so you can use them within your script without any further installation. Also, deprecated function such as each() is not included in the list. array_change_key_case() Changes the case of all keys in an array to lowercase or uppercase. ------------ array_chunk() Splits an array into chunks of arrays. ------------ array_column() Returns the values from a single column in the input array. ------------ array_combine() Creates an array by using one array for keys and another for its values. ------------ array_count_values() Counts all the distinct values of an array. ------------ array_diff() Compare arrays values, and returns the differences. ------------ array_diff_assoc() Compare arrays values, with additional key check, and returns the differences. ------------ array_diff_key() Compare arrays keys, and returns the differences. ------------ array_diff_uassoc() Compare arrays values, with additional key check using a user-defined key comparison function, and returns the differences. ------------ array_diff_ukey() Compare array keys, using a user-defined key comparison function, and returns the differences. ------------ array_fill() Fills an array with values. ------------ array_fill_keys() Fills an array with values, specifying keys. ------------ array_filter() Filters elements of an array using a user-defined function. ------------ array_flip() Flips or exchanges all keys with their associated values in an array. ------------ array_intersect() Compare arrays values, and returns the matches. ------------ array_intersect_assoc() Compare arrays values, with additional key check, and returns the matches. ------------ array_intersect_key() Compare arrays keys, and returns the matches. ------------ array_intersect_uassoc() Compare arrays values, with additional key check using a user-defined key comparison function, and returns the matches. ------------ array_intersect_ukey() Compare arrays keys, using a user-defined key comparison function, and returns the matches. ------------ array_key_exists() Checks if the specified key exists in the array. ------------ array_key_first() Gets the first key of an array. ------------ array_key_last() Gets the last key of an array. ------------ array_keys() Returns all the keys or a subsets of the keys of an array. ------------ array_map() Sends the elements of the given arrays to a user-defined function, which may use it to returns new values. ------------ array_merge() Merges one or more arrays into one array. ------------ array_merge_recursive() Merges one or more arrays into one array recursively. ------------ array_multisort() Sorts multiple or multi-dimensional arrays. ------------ array_pad() Inserts a specified number of items, with a specified value, to an array. ------------ array_pop() Removes the last element of an array, and returns the value of the removed element. ------------ array_product() Calculates the product of the values in an array. ------------ array_push() Inserts one or more elements to the end of an array. ------------ array_rand() Returns one or more random keys from an array. ------------ array_reduce() Reduce the array to a single value by using a user-defined callback function. ------------ array_replace() Replaces the values of the first array with the values from following arrays. ------------ array_replace_recursive() Replaces the values of the first array with the values from following arrays recursively. ------------ array_reverse() Returns an array with elements in reverse order. ------------ array_search() Searches an array for a given value and returns the corresponding key if successful. ------------ array_shift() Removes the first element from an array, and returns the value of the removed element. ------------ array_slice() Extract a slice from an array. ------------ array_splice() Removes a portion of the array and replace it with something else. ------------ array_sum() Calculates the sum of values in an array. ------------ array_udiff() Compares arrays values using a user-defined comparison callback function, and returns the differences. ------------ array_udiff_assoc() Compares arrays values using a user-defined comparison callback function, with additional key check, and returns the differences. ------------ array_udiff_uassoc() Compares the keys and values of arrays using two separate user-defined key and value comparison callback functions, and returns the differences. ------------ array_uintersect() Compares arrays values using a user-defined comparison callback function, and returns the matches. ------------ array_uintersect_assoc() Compares arrays values using a user-defined comparison callback function, with additional key check, and returns the matches. ------------ array_uintersect_uassoc() Compares the keys and values of arrays using two separate user-defined key and value comparison callback functions, and returns the matches. ------------ array_unique() Removes duplicate values from an array. ------------ array_unshift() Adds one or more elements to the beginning of an array. ------------ array_values() Returns all the values of an array. ------------ array_walk() Applies a user-defined function to each element of an array. ------------ array_walk_recursive() Applies a user-defined function recursively to each element of an array. ------------ array() Creates an array. ------------ arsort() Sorts an associative array by value, in reverse or descending order. ------------ asort() Sorts an associative array by value, in ascending order. ------------ compact() Creates array containing variables and their values. ------------ count() Returns the number of elements in an array. ------------ current() Returns the current element in an array. ------------ end() Sets the internal pointer of an array to its last element. ------------ extract() Import variables into the current symbol table from an array. ------------ in_array() Checks if a value exists in an array. ------------ key() Fetches a key from an array. ------------ krsort() Sorts an associative array by key, in reverse or descending order. ------------ ksort() Sorts an associative array by key, in ascending order. ------------ list() Assign variables as if they were an array. ------------ natcasesort() Sorts an array using a case insensitive "natural order" algorithm. ------------ natsort() Sorts an array using a "natural order" algorithm. ------------ next() Advance the internal array pointer of an array. ------------ pos() Returns the current element in an array. Alias of current() function. ------------ prev() Rewind the internal array pointer. ------------ range() Creates an array containing a range of elements. ------------ reset() Sets the internal pointer of an array to its first element. ------------ rsort() Sorts an array in reverse or descending order. ------------ shuffle() Shuffles or randomizes the order of the elements in an array. ------------ sizeof() Returns the number of elements in an array. Alias of count() function. ------------ sort() Sorts an array in ascending order. ------------ uasort() Sorts an array using a user-defined comparison function and maintain index association. ------------ uksort() Sorts an array by keys using a user-defined comparison function. ------------ usort() Sorts an array by values using a user-defined comparison function.
上一篇:
PHP String Functions
下一篇:
PHP File System Functions