排序
ftp_raw
PHP ftp_raw() 函数定义和用法ftp_raw() 函数向 FTP 服务器发送一个 raw 命令。语法ftp_raw(ftp_connection,command)参数描述ftp_connection必需。规定要使用的 FTP 连接(FTP 连接的标识符)...
filter_has_var
PHP filter_has_var() 函数定义和用法filter_has_var() 函数检查是否存在指定输入类型的变量。若成功,则返回 true,否则返回 false。语法filter_has_var(type, variable)参数描述type必需。...
fopen
PHP fopen() 函数定义和用法fopen() 函数打开文件或者 URL。如果打开失败,本函数返回 FALSE。语法fopen(filename,mode,include_path,context)参数描述filename必需。规定要打开的文件或 URL...
set_exception_handler
PHP set_exception_handler() 函数定义和用法set_exception_handler() 函数设置用户自定义的异常处理函数。该函数用于创建运行时期间的用户自己的异常处理方法。该函数会返回旧的异常处理程序...
date_sunset
PHP date_sunset() 函数定义和用法date_sunset() 函数返回指定的日期与地点的日落时间。语法date_sunset(timestamp,format,latitude,longitude,zenith,gmt_offset)参数描述timestamp必需。forma...
natsort
PHP natsort() 函数定义和用法natsort() 函数用自然顺序算法对给定数组中的元素排序。natsort() 函数实现了“自然排序”,即数字从 1 到 9 的排序方法,字母从 a 到 z 的排序方法,短者优先。...
array_push
PHP array_push() 函数定义和用法array_push() 函数向第一个参数的数组尾部添加一个或多个元素(入栈),然后返回新数组的长度。该函数等于多次调用 $array[] = $value。语法array_push(array,v...
connection_status
PHP connection_status() 函数定义和用法connection_status() 函数返回当前的连接状态。可返回的可能值:0 - CONNECTION_NORMAL - 连接运行正常1 - CONNECTION_ABORTED - 连接由用户或网络错...
utf8_encode
PHP utf8_encode() 函数定义和用法utf8_encode() 函数把 ISO-8859-1 字符串编码为 UTF-8。Unicode 是全球标准,已经发展到能够通过唯一的编码来描述所有语言中的字符,外加大量的符号。不过,...
stripslashes
PHP stripslashes() 函数定义和用法stripslashes() 函数删除由 addslashes() 函数添加的反斜杠。语法stripslashes(string)参数描述string必需。规定要检查的字符串。提示和注释注释:该函数...
