tname[".$this->hostname."]-username[".$this->username."]-password[".$this->password."]-msg[".$msg."]\n", FILE_APPEND);
}
}
/*End of file ftp.php*/
/*Location /Apache Group/htdocs/ftp.php*/
DEMO
复制代码 代码如下:
<?php
require_once(''ftp.php'');
$config = array(
''hostname'' => ''localhost'',
''username'' => ''root'',
''password'' => ''root'',
''port'' => 21
);
$ftp = new Ftp();
$ftp->connect($config);
$ftp->upload(''ftp_err.log'',''ftp_upload.log'');
$ftp->download(''ftp_upload.log'',''ftp_download.log'');
/*End of file ftp_demo.php*/
/*Location: /htdocs/ftp_demo.php*/