Php implements curl to simulate ftp upload, and phpcurlftp uploads. Php implements the curl simulation ftp upload method. phpcurlftp uploads the example in this article describes how php implements the curl simulation ftp upload method. Share it with you for your reference. The details are as follows: phpfunctionu php implements curl to simulate ftp upload, and phpcurlftp uploads
This example describes how php implements curl to simulate ftp upload. Share it with you for your reference. The details are as follows:
<?phpfunction 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");?>
I hope this article will help you with php programming.
Examples in this article describes how php implements curl to simulate ftp upload. Share it with you for your reference. Details: phpfunction u...