|
PHP复制代码 $this->ftp->upload()
Uploads a file to your server . You must supply the local path and the remote path , and you can optionally set the mode and permissions . Example :
$this->ftp->upload('/local/path/to/myfile.html', '/public_html/myfile.html', 'ascii', 0775);
复制代码
请问里面提到的 local path是指的是浏览器端的目录还是web服务器端的啊?
我的理解是 有三个端,浏览器端,web服务器端,和ftp服务器端,请用过这个类的同学帮忙回答下吧 |
|