Home  >  Article  >  Backend Development  >  How to implement curl to simulate ftp upload in php, phpcurlftp upload_PHP tutorial

How to implement curl to simulate ftp upload in php, phpcurlftp upload_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:45:55860browse

How to implement curl to simulate ftp upload in php, phpcurlftp upload

This article describes the method of php to implement curl to simulate ftp upload. Share it with everyone for your reference. The details are as follows:

<&#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;>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1039180.htmlTechArticlephp method to implement curl to simulate ftp upload, phpcurlftp upload This article describes the method of php to implement curl to simulate ftp upload. Share it with everyone for your reference. The details are as follows: phpfunction u...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn