[PHP]curl上传多文件

2021-06-15 22:05

阅读:652

标签:get   return   exe   [1]   echo   php   文件   class   pos   

码一下curl上传多文件的行

5.5之前版本的写法

$file = array(
            ‘pic[0]‘=>"@E:\\wwwroot\\10003\\temp_56.ini;type=text/html;filename=temp_56.ini",
            ‘pic[1]‘=>"@E:\\wwwroot\\10003\\temp_29.html;type=text/html;filename=temp_29.html"
        );

5.5以上版本的写法

php 5.5 version or above
        $file = array(
            ‘pic[0]‘=>new CURLFile(‘E:\\wwwroot\\10003\\temp_56.ini‘, ‘text/html‘, ‘temp_56.ini‘),
            ‘pic[1]‘=>new CURLFile(‘E:\\wwwroot\\10003\\temp_29.html‘, ‘text/html‘, ‘temp_29.html‘)
        );

合并其他的POST参数,POST出去

$data = array_merge($file, $data);
$ch   = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true );
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// curl_getinfo($ch);
$return_data = curl_exec($ch);
curl_close($ch);
echo $return_data;

 

[PHP]curl上传多文件

标签:get   return   exe   [1]   echo   php   文件   class   pos   

原文地址:http://www.cnblogs.com/yiyide266/p/7273062.html


评论


亲,登录后才可以留言!