本文實例講述了php實現curl模擬ftp上傳的方法。分享給大家供大家參考。具體如下:
<?php
function upload($dir,$src,$dest)
{
$ch = curl_init();
$fp = fopen($src, 'r');
curl_setopt($ch, CURLOPT_URL, 'ftp://user:pwd@host/interpretation/'.$dir .'/'. $dest);
curl_setopt($ch, CURLOPT_UPLOAD, 1);
curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_INFILESIZE, filesize($src));
curl_exec ($ch);
$error_no = curl_errno($ch);
curl_close ($ch);
if ($error_no != 0)
{
return 0;
}else{
return 1;
}
}
upload("images","s.py","aaa.py");
?>
希望本文所述對大家的php程序設計有所幫助。
新聞熱點
疑難解答