龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

php curl 模拟ftp上传

时间:2014-07-22 14:49来源: 作者: 点击:
分享到:
php curl 模拟ftp上传
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");
?>
精彩图集

赞助商链接