Heim  >  Artikel  >  Backend-Entwicklung  >  php实现curl模拟ftp上传的方法,phpcurlftp上传_PHP教程

php实现curl模拟ftp上传的方法,phpcurlftp上传_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:45:55835Durchsuche

php实现curl模拟ftp上传的方法,phpcurlftp上传

本文实例讲述了php实现curl模拟ftp上传的方法。分享给大家供大家参考。具体如下:

<&#63;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");
&#63;>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1039180.htmlTechArticlephp实现curl模拟ftp上传的方法,phpcurlftp上传 本文实例讲述了php实现curl模拟ftp上传的方法。分享给大家供大家参考。具体如下: phpfunction u...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn