FTPforPHP是封装了FTP客户端操作的PHP类。
示例代码:
try{ $ftp=newFtp; $ftp->connect($host); $ftp->login($username,$password); $ftp->put($destination_file,$source_file,FTP_BINARY);}catch(FtpException$e){ echo'Error:',$e->getMessage();}
FTPforPHP是封装了FTP客户端操作的PHP类。
示例代码:
try{ $ftp=newFtp; $ftp->connect($host); $ftp->login($username,$password); $ftp->put($destination_file,$source_file,FTP_BINARY);}catch(FtpException$e){ echo'Error:',$e->getMessage();}
评论