位置: 编程技术 - 正文
推荐整理分享PHP:ftp_rename()的用法_FTP函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
ftp_rename — 更改 FTP 服务器上的文件或目录名
说明 bool ftp_rename ( resource $ftp_stream , string $oldname , string $newname )ftp_rename() 将 FTP 服务器上的一个文件或目录改名。
参数ftp_stream
FTP 连接的标识符。
oldname原来的文件/目录名。
newname新名字。
返回值成功时返回 TRUE, 或者在失败时返回 FALSE。
范例
Example #1 ftp_rename() 例子
<?php$old_file='somefile.txt.bak';$new_file='somefile.txt';//setupbasicconnection$conn_id=ftp_connect($ftp_server);//loginwithusernameandpassword$login_result=ftp_login($conn_id,$ftp_user_name,$ftp_user_pass);//trytorename$old_fileto$new_fileif(ftp_rename($conn_id,$old_file,$new_file)){echo"successfullyrenamed$old_fileto$new_filen";}else{echo"Therewasaproblemwhilerenaming$old_fileto$new_filen";}//closetheconnectionftp_close($conn_id);?>PHP:ftp_raw()的用法_FTP函数 ftp_raw(PHP5)ftp_raw向FTP服务器发送命令说明arrayftp_raw(resource$ftp_stream,string$command)向FTP服务器发送任意command。参数ftp_streamFTP连接标示符。command要执行的命令
PHP:ftp_quit()的用法_FTP函数 ftp_quit(PHP4,PHP5)ftp_quitftp_close()的别名说明此函数是该函数的别名:ftp_close()
PHP:ftp_put()的用法_FTP函数 ftp_put(PHP4,PHP5)ftp_put上传文件到FTP服务器说明boolftp_put(resource$ftp_stream,string$remote_file,string$local_file,int$mode[,int$startpos])ftp_put()函数用来上传由local_file参数指
友情链接: 武汉网站建设