位置: 编程技术 - 正文
推荐整理分享PHP:ftp_fput()的用法_FTP函数(php ftp上传文件),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:phpstorm ftp,php ftp功能,phpstorm ftp,phpstorm ftp,php ftp上传文件,phpstudy ftp怎么用,phpstudy ftp怎么用,phpstorm ftp,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
ftp_fput — 上传一个已经打开的文件到 FTP 服务器
说明 bool ftp_fput ( resource $ftp_stream , string $remote_file , resource $handle , int $mode [, int $startpos = 0 ] )ftp_fput() 函数用来上传一个在已经打开的文件中的数据到 FTP 服务器。
参数ftp_stream
FTP 连接的链接标识符。
remote_file远程文件路径。
handle打开的本地文件句柄,读取到文件末尾。
mode传输模式只能为 (文本模式) FTP_ASCII 或 (二进制模式) FTP_BINARY 其中的一个。
startpos远程文件上传的开始位置。
返回值成功时返回 TRUE, 或者在失败时返回 FALSE。
范例
Example #1 ftp_fput() 例子
<?php//opensomefileforreading$file='somefile.txt';$fp=fopen($file,'r');//setupbasicconnection$conn_id=ftp_connect($ftp_server);//loginwithusernameandpassword$login_result=ftp_login($conn_id,$ftp_user_name,$ftp_user_pass);//trytoupload$fileif(ftp_fput($conn_id,$file,$fp,FTP_ASCII)){echo"Successfullyuploaded$filen";}else{echo"Therewasaproblemwhileuploading$filen";}//closetheconnectionandthefilehandlerftp_close($conn_id);fclose($fp);?> 更新日志版本 说明 4.3.0 添加了 startpos 的支持。
参见ftp_put() - 上传文件到 FTP 服务器 ftp_nb_fput() - 将文件存储到 FTP 服务器 (非阻塞) ftp_nb_put() - 存储一个文件至 FTP 服务器(non-blocking)
PHP:ftp_fget()的用法_FTP函数 ftp_fget(PHP4,PHP5)ftp_fget从FTP服务器上下载一个文件并保存到本地一个已经打开的文件中说明boolftp_fget(resource$ftp_stream,resource$handle,string$remote_file,int$mode[,int$r
PHP:ftp_exec()的用法_FTP函数 ftp_exec(PHP4=4.0.3,PHP5)ftp_exec请求运行一条FTP命令说明boolftp_exec(resource$ftp_stream,string$command)发送一个SITEEXECcommand请求到FTP服务器。如果成功(服务器发送响
PHP:ftp_delete()的用法_FTP函数 ftp_delete(PHP4,PHP5)ftp_delete删除FTP服务器上的一个文件说明boolftp_delete(resource$ftp_stream,string$path)ftp_delete()函数用来删除FTP服务器上的一个由参数path指定的的
标签: php ftp上传文件
本文链接地址:https://www.jiuchutong.com/biancheng/280538.html 转载请保留说明!上一篇:PHP:ftp_get_option()的用法_FTP函数
友情链接: 武汉网站建设