排序
array_intersect
PHP array_intersect() 函数定义和用法array_intersect() 函数返回两个或多个数组的交集数组。结果数组包含了所有在被比较数组中,也同时出现在所有其他参数数组中的值,键名保留不变。注释:仅...
unpack
PHP unpack() 函数定义和用法unpack() 函数从二进制字符串对数据进行解包。语法unpack(format,data)参数描述format必需。规定在解包数据时所使用的格式。data可选。规定被解包的二进制数据。f...
xml_set_object
PHP xml_set_object() 函数定义和用法xml_set_object() 函数允许在对象中使用 XML 解析器。语法xml_set_object(parser,object)参数描述parser必需。规定要使用的 XML 解析器。object必需。规...
strtoupper
PHP strtoupper() 函数定义和用法strtoupper() 函数把字符串转换为大写。语法strtoupper(string)参数描述string必需。规定要转换的字符串。例子输出:HELLO WORLD!
strncmp
PHP strncmp() 函数定义和用法strncmp() 函数比较两个字符串。该函数返回:0 - 如果两个字符串相等>0 - 如果 string1 大于 string2语法strncmp(string1,string2,length)参数描述string1必需。...
quoted_printable_decode
PHP quoted_printable_decode() 函数定义和用法quoted_printable_decode() 函数对经过 quoted-printable 编码后的字符串进行解码,返回 8 位的字符串。该函数类似于 imap_qprint() 函数。不同...
convert_cyr_string
PHP convert_cyr_string() 函数定义和用法convert_cyr_string() 函数把字符由一种 Cyrillic 字符转换成另一种。被支持的 Cyrillic 字符集是:k - koi8-rw - windows-1251i - iso8859-5a - x-c...
mysql_list_processes
PHP mysql_list_processes() 函数定义和用法mysql_list_processes() 函数列出 MySQL 进程。若成功,则 mysql_list_processes() 返回一个结果指针,说明了当前服务器的线程。如果失败,则返回 ...
sqrt
PHP sqrt() 函数定义和用法sqrt() 函数返回一个数的平方根。语法sqrt(x)参数描述x必需。一个数字。说明返回 x 的平方根。提示和注释注释:如果参数 x 是负数,则 sqrt() 函数返回 -1.#IND...
cos
PHP cos() 函数定义和用法cos() 函数返回一个数的余弦。语法cos(x)参数描述x必需。一个数。说明cos() 返回参数 x 的余弦值。参数 x 的单位为弧度。提示和注释注释:cos() 返回的数值在 -1 ...
