curl put方式上传文件

发送端

 1 <?php
 2 
 3 function curlPut($destUrl, $sourceFileDir, $headerArr = array(), $timeout = 10)
 4 {
 5     $ch = curl_init(); //初始化curl
 6     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //返回字符串,而不直接输出
 7     curl_setopt($ch, CURLOPT_URL, $destUrl); //设置put到的url
 8     curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArr);
 9     curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
10     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //不验证对等证书
11     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); //不检查服务器SSL证书
12 
13     curl_setopt($ch, CURLOPT_PUT, true); //设置为PUT请求
14     curl_setopt($ch, CURLOPT_INFILE, fopen($sourceFileDir, 'rb')); //设置资源句柄
15     curl_setopt($ch, CURLOPT_INFILESIZE, filesize($sourceFileDir));
16 
17     $response = curl_exec($ch);
18     if ($error = curl_error($ch))
19     {
20         $bkArr =  array(
21             'code' => 0,
22             'msg' => $error,
23         );
24     }
25     else
26     {
27         $bkArr =  array(
28             'code' => 1,
29             'msg' => 'ok',
30             'resp' => $response,
31         );
32     }
33 
34     curl_close($ch); // 关闭 cURL 释放资源
35 
36     return $bkArr;
37 }
38 
39 $destUrl = 'http://www.songjm.com/http_put_save.php';
40 $sourceFileDir = 'asset/pic.png';
41 $headerArr = array(
42     'filename:newname.png',
43 );
44 
45 $bkJson = curlPut($destUrl, $sourceFileDir, $headerArr);
46 $bkArr = json_decode($bkJson, true);
47 echo "<pre>";
48 print_r($bkArr);
49 die;

接收端

 1 <?php
 2 
 3 if ($_SERVER['REQUEST_METHOD'] != 'PUT')
 4 {
 5     $bkMsg = array(
 6         'code' => -1,
 7         'msg' => 'not put',
 8     );
 9     echo json_encode($bkMsg);
10     exit();
11 }
12 
13 $filename = $_SERVER['HTTP_FILENAME'];
14 
15 $fileSaveDir = 'upload/';
16 $newFile = $fileSaveDir.$filename;
17 
18 $handleToSave = fopen($newFile,'wb+'); 
19 $handleSource = fopen('php://input','rb');
20 
21 while (!feof($handleSource))
22 {
23     fwrite($handleToSave, fread($handleSource, 1024));
24 }
25 
26 fclose($handleToSave);
27 fclose($handleSource);
28 
29 $bkMsg = array(
30     'code' => 1,
31     'msg' => 'ok',
32 );
33 echo json_encode($bkMsg);
34 exit();

 

转载于:https://www.cnblogs.com/songjianming/p/11072958.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值