下载 :
$url='ftp://ip.address/';
$hd = curl_init();
curl_setopt($hd,CURLOPT_URL,$url);
curl_setopt($hd,CURLOPT_RETURNTRANSFER,true);
curl_setopt($hd,CURLOPT_TIMEOUT,30);
curl_setopt($hd,CURLOPT_HEADER,1);
curl_setopt($hd,CURLOPT_USERPWD,'username:password');
$fp = fopen('download.txt','wb');
curl_setopt($hd,CURLOPT_FILE,$fp);
curl_exec($hd);
fclose($fp);
curl_close($hd);
上传:
$url='ftp://ip.address/download.txt';
$hd = curl_init();
curl_setopt($hd,CURLOPT_URL,$url);
curl_setopt($hd,CURLOPT_RETURNTRANSFER,true);
curl_setopt($hd,CURLOPT_TIMEOUT,30);
curl_setopt($hd,CURLOPT_HEADER,1);
curl_setopt($hd,CURLOPT_USERPWD,'username:password');
$localfile ='download.txt';
$fp = fopen($localfile,'r');
curl_setopt($hd,CURLOPT_UPLOAD,1);
curl_setopt($hd,CURLOPT_INFILE,$fp);
curl_setopt($hd,CURLOPT_INFILESIZE,filesize($localfile));
curl_exec($hd);
fclose($fp);
curl_close($hd);