[PHP]curl上传多文件
2021-06-15 22:05
标签:get return exe [1] echo php 文件 class pos 码一下curl上传多文件的行 5.5之前版本的写法 5.5以上版本的写法 合并其他的POST参数,POST出去 [PHP]curl上传多文件 标签:get return exe [1] echo php 文件 class pos 原文地址:http://www.cnblogs.com/yiyide266/p/7273062.html$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"
);
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‘)
);
$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;
上一篇:【HTML5】如何处理HTML5新标签的浏览器兼容版问题
下一篇:Ajax