PHP method to implement FTP file transfer based on curl

墨辰丷
Release: 2023-03-30 16:26:02
Original
2039 people have browsed it

This article mainly introduces the method of FTP file transfer in PHP based on curl. Interested friends can refer to it. I hope it will be helpful to everyone.

The details are as follows:

<?php
function upload($dir,$src,$dest)
{
  $ch = curl_init();
  $fp = fopen($src, &#39;r&#39;);
  curl_setopt($ch, CURLOPT_URL, &#39;ftp://user:pwd@host/interpretation/&#39;.$dir .&#39;/&#39;. $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");
?>
Copy after login

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

How to operate the database with php combined with session

How to localize remote images in php

PHP method of accepting files and getting suffix names

The above is the detailed content of PHP method to implement FTP file transfer based on curl. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!