排序
next
PHP next() 函数定义和用法next() 函数把指向当前元素的指针移动到下一个元素的位置,并返回当前元素的值。如果内部指针已经超过数组的最后一个元素,函数返回 false。语法next(array)参数描述a...
gmdate
PHP gmdate() 函数定义和用法gmdate() 函数格式化 GMT/UTC 日期/时间。同 date() 函数 类似,不同的是返回的时间是格林威治标准时(GMT)。语法gmdate(format,timestamp) 参数描述format可...
JDToFrench
PHP JDToFrench() 函数定义和用法JDToFrench() 函数把儒略日计数转换为法国共和国历法。语法jdtofrench(jd)参数描述jd必需。数字(儒略日计数)。提示和注释:注释:该函数以 'month/day/year...
array_rand
PHP array_rand() 函数定义和用法array_rand() 函数从数组中随机选出一个或多个元素,并返回。第二个参数用来确定要选出几个元素。如果选出的元素不止一个,则返回包含随机键名的数组,否则返回...
array_unique
定义和用法1、array_unique() 函数移除数组中的重复的值,并返回结果数组。2、当几个数组元素的值相等时,只保留第一个元素,其他的元素被删除。3、返回的数组中键名不变。语法array_unique(arr...
date_default_timezone_get
PHP date_default_timezone_get() 函数定义和用法date_default_timezone_get() 函数返回脚本中所有日期时间函数所使用的默认时区。语法date_default_timezone_get(void)参数描述void可选。说明...
strptime
PHP strptime() 函数定义和用法strptime() 函数解析由 strftime() 生成的日期/时间。语法strptime(date,format)参数描述date要解析的字符串(例如从 strftime() 返回的)。formatdate 所使...
ucwords
PHP ucwords() 函数定义和用法ucwords() 函数把字符串中每个单词的首字符转换为大写。语法ucwords(string)参数描述string必需。规定要转换的字符串。例子输出:Hello World
zip_entry_compressionmethod
PHP zip_entry_compressionmethod() 函数定义和用法zip_entry_compressionmethod() 函数返回 zip 档案项目的压缩方法。语法zip_entry_compressionmethod(zip_entry)参数描述zip_entry必需。规...
tanh
PHP tanh() 函数定义和用法tanh() 函数返回双曲正切。语法tanh(x)参数描述x必需。一个数。说明返回 x 的双曲正切值,定义为 sinh(arg)/cosh(arg)。例子在本例中,我们将返回不同的数的双曲...