【发布时间】:2013-03-05 01:18:46
【问题描述】:
我尝试使用 codeigniter ftp 类上传文件。
$this->load->library('ftp');
$config['hostname'] = 'www.domain.com';
$config['username'] = 'xxxxxxxxx';
$config['password'] = 'xxxxxxxx';
$config['port'] = 21;
$config['passive'] = FALSE;
$config['debug'] = TRUE;
$this->ftp->connect($config);
$this->ftp->upload('C:\Users\SYSTEM2\Desktop\checking\ash.jpg\' , base_url().'uploads/myfolder/ash.jpg/');
$this->ftp->close();
但显示此错误
“无法找到源文件。请检查您的路径。” 任何人请帮我解决这个问题...
【问题讨论】:
-
我很惊讶您没有收到语法错误。
标签: php codeigniter ftp