排序
PHP is_numeric
函数用于检测变量是否为数字或数字字符串。语法is_numeric ( mixed $var )返回值如果指定的变量是数字和数字字符串则返回 TRUE,否则返回 FALSE。示例$var_name1 = 678; $var_name2 = 'a678...
strcasecmp
PHP strcasecmp() 函数定义和用法strcasecmp() 函数比较两个字符串。该函数返回:0 - 如果两个字符串相等>0 - 如果 string1 大于 string2语法strcasecmp(string1,string2)参数描述string1必需...
libxml_clear_errors
PHP libxml_clear_errors() 函数定义和用法libxml_clear_errors() 函数清空 libxml 错误缓冲。语法libxml_clear_errors()例子
soundex
PHP soundex() 函数定义和用法soundex() 函数计算字符串的 soundex 键。soundex 键是 4 字符长的字母数字字符串,表示一个单词的英文发音。soundex() 函数可用于拼写检查程序。如果成功,则返...
mysql_connect
PHP mysql_connect() 函数定义和用法mysql_connect() 函数打开非持久的 MySQL 连接。语法mysql_connect(server,user,pwd,newlink,clientflag)参数描述server可选。规定要连接的服务器。可以包...
expm1
PHP expm1() 函数定义和用法expm1() 函数返回 exp(x) - 1,甚至当 number 的值接近零也能计算出准确结果。语法expm1(x)参数描述x必需。一个数。说明expm1() 返回 exp(x) - 1,甚至当 x 的值...
mysql_get_server_info
PHP mysql_get_server_info() 函数定义和用法mysql_get_server_info() 函数返回 MySQL 服务器的信息。如果成功,则返回 MySQL 服务器的版本号,如果失败,则返回 false。语法mysql_get_server...
rand
PHP rand() 函数定义和用法rand() 函数返回随机整数。语法rand(min,max)参数描述min,max可选。规定随机数产生的范围。说明如果没有提供可选参数 min 和 max,rand() 返回 0 到 RAND_MAX 之...
set_file_buffer
PHP set_file_buffer() 函数定义和用法set_file_buffer() 函数设置打开文件的缓冲大小。若成功,则该函数返回 0。若失败,则返回 EOF。语法set_file_buffer(file,buffer)参数描述file必需。规...
zip_entry_compressionmethod
PHP zip_entry_compressionmethod() 函数定义和用法zip_entry_compressionmethod() 函数返回 zip 档案项目的压缩方法。语法zip_entry_compressionmethod(zip_entry)参数描述zip_entry必需。规...
