首页 > 代码库 > php的ftp类
php的ftp类
1.需求
了解php的ftp使用
2.例子
使用CI封装好的ftp类库
上传 $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();
下载文件列表 $this->load->library(‘ftp‘); $config[‘hostname‘] = ‘ftp.example.com‘; $config[‘username‘] = ‘your-username‘; $config[‘password‘] = ‘your-password‘; $config[‘debug‘] = TRUE; $this->ftp->connect($config); $list = $this->ftp->list_files(‘/public_html/‘); print_r($list); $this->ftp->close();
参考资料:
http://codeigniter.org.cn/user_guide/libraries/ftp.html
http://php.net/manual/zh/book.ftp.php
php的ftp类
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。