如何在Codeigniter中通过FTP检查上传文件

时间:2014-05-27 05:10:13

标签: codeigniter

任何人都可以帮助我!我想在用户运行我们的面板时通过FTP在Project的用户面板中上传一些文件(如pdf或.xls或.doc),然后自动通知用户您上传的这些文件。可能吗?如果有,请帮助我。

由于 SONU

1 个答案:

答案 0 :(得分:0)

$this->load->library('ftp');

$config['hostname'] = 'ftp.example.com';
$config['username'] = 'your-username';
$config['password'] = 'your-password';
$config['debug']    = TRUE;

$this->ftp->connect($config);

$this->ftp->upload('/local/path/to/myfile.html', '/public_html/myfile.html', 'ascii', 0775);

$this->ftp->close();

每次连接到FTP登录到表时,上传的文件是什么时间,根据此信息,用户会更新以下文件。

参考:http://ellislab.com/codeigniter/user-guide/libraries/ftp.html