排序
convert_uuencode
PHP convert_uuencode() 函数定义和用法convert_uuencode() 函数使用 uuencode 算法对字符串进行编码。语法convert_uuencode(string)参数描述string必需。规定进行 uuencode 的字符串。提示和...
str_repeat
PHP str_repeat() 函数定义和用法str_repeat() 函数把字符串重复指定的次数。语法str_repeat(string,repeat)参数描述string必需。规定要重复的字符串。repeat必需。规定字符串将被重复的次数...
ftp_put
PHP ftp_put() 函数定义和用法ftp_put() 函数把文件上传到服务器。若成功则返回 true,失败则返回 false。语法ftp_put(ftp_connection,remote,local,mode,resume)参数描述ftp_connection必需。...
eval
PHP eval() 函数定义和用法eval() 函数把字符串按照 PHP 代码来计算。该字符串必须是合法的 PHP 代码,且必须以分号结尾。如果没有在代码字符串中调用 return 语句,则返回 NULL。如果代码中...
array_chunk
PHP array_chunk()定义和用法array_chunk() 函数把一个数组分割为新的数组块。其中每个数组的单元数目由 size 参数决定。最后一个数组的单元数目可能会少几个。可选参数 preserve_key 是一个布...
fileowner
PHP fileowner() 函数定义和用法fileowner() 函数返回文件的所有者。若成功,则返回文件所有的用户 ID。若失败,则返回 false。用户 ID 以数字格式返回。语法fileowner(filename)参数描述file...
explode
PHP explode() 函数定义和用法explode() 函数把字符串分割为数组。语法explode(separator,string,limit)参数描述separator必需。规定在哪里分割字符串。string必需。要分割的字符串。limit可...
atanh
PHP atanh() 函数定义和用法atanh() 函数返回一个角度的反双曲正切。语法atanh(x)参数描述x必需。一个数。说明atanh() 函数返回 x 的反双曲正切值,即,其双曲正切为 x 的那个值。提示和注...
mysql_fetch_lengths
PHP mysql_fetch_lengths() 函数定义和用法mysql_fetch_lengths() 函数取得一行中每个字段的内容的长度。行是由这些函数返回的:mysql_fetch_array()、mysql_fetch_assoc()、mysql_fetch_obje...
connection_status
PHP connection_status() 函数定义和用法connection_status() 函数返回当前的连接状态。可返回的可能值:0 - CONNECTION_NORMAL - 连接运行正常1 - CONNECTION_ABORTED - 连接由用户或网络错...
