标题 日期 人气
filepro_fieldcount 函数详解 12-04 397
取得字段数目。 filepro_fieldcount语法: int filepro_fieldcount(void); filepro_fieldcount返回值: 整数 函数种类: 数据库功能 filepro_fieldcount内容说明 本函数用来取得 FilePro 数据库的字段 (field) 数目。...
标签(Tag):
ftp_delete 函数详解 12-04 261
将文件删除。 ftp_delete语法: boolean ftp_delete(int ftp_stream, string remote_file); ftp_delete返回值: 布尔值 函数种类: 网络系统 ftp_delete内容说明 本函数可将远端 FTP 服务器的文件删除,若是权限不符...
标签(Tag):
fseek 函数详解 12-04 522
移动文件指针。 fseek语法: int fseek(int fp, int offset); fseek返回值: 整数 函数种类: 文件存取 fseek内容说明 本函数将文件 fp 的指针移到指定的偏移位 (offset) 上。使用本函数就像 C 语言中的...
标签(Tag):
ftp_fget 函数详解 12-04 342
下载文件,并存在已开的文件中。 ftp_fget语法: boolean ftp_fget(int ftp_stream, int fp, string remote_file, int mode); ftp_fget返回值: 布尔值 函数种类: 网络系统 ftp_fget内容说明 本函数用来下载指定的文...
标签(Tag):
fsockopen 函数详解 12-04 352
打开网络的 Socket 链接。 fsockopen语法: int fsockopen(string hostname, int port, int [errno], string [errstr], int [timeout]); fsockopen返回值: 整数 函数种类: 网络系统 fsockopen内容说明 目前这个函数提供二个...
标签(Tag):
ftp_fput 函数详解 12-04 419
上传已打开文件。 ftp_fput语法: boolean ftp_fput(int ftp_stream, string remote_file, int fp, int mode); ftp_fput返回值: 布尔值 函数种类: 网络系统 ftp_fput内容说明 本函数用来上传指定的文件。参数 ftp_s...
标签(Tag):
ftell 函数详解 12-04 419
取得文件读写指针位置。 ftell语法: int ftell(int fp); ftell返回值: 整数 函数种类: 文件存取 ftell内容说明 本函数返回文件 fp 的指针偏移位 (offset) 值。当发生错误时,返回 false 值。文件指针...
标签(Tag):
ftp_get 函数详解 12-04 218
下载文件。 ftp_get语法: boolean ftp_get(int ftp_stream, string local_file, string remote_file, int mode); ftp_get返回值: 布尔值 函数种类: 网络系统 ftp_get内容说明 本函数用来下载指定的文件。参数 ftp_str...
标签(Tag):
ftp_cdup 函数详解 12-04 464
回上层目录。 ftp_cdup语法: boolean ftp_cdup(int ftp_stream); ftp_cdup返回值: 布尔值 函数种类: 网络系统 ftp_cdup内容说明 本函数用来回到上层目录,也就是目前目录的父目录。参数 ftp_stream 为 F...
标签(Tag):
ftp_login 函数详解 12-04 416
登入 FTP 服务器。 ftp_login语法: boolean ftp_login(int ftp_stream, string username, string password); ftp_login返回值: 布尔值 函数种类: 网络系统 ftp_login内容说明 本函数可登入已链接的 FTP 服务器。参数...
标签(Tag):
array_fill() 函数用给定的值填充数组,返回的数组有 number 个元素...
array_intersect() 函数返回两个或多个数组的交集数组。 结果数组...
array_multisort() 函数对多个数组或多维数组进行排序。 参数中的...
array_splice() 函数与 array_slice() 函数类似,选择数组中的一系列元...
array_sum() 函数返回数组中所有值的总和。 如果所有值多是整数...
PHP extract() 函数从数组中把变量导入到当前的符号表中。 对于...