能不能通过curl模拟出下面html的形式来上传图片
<input type="file" name="imgs[]"/>
<input type="file" name="imgs[]"/>
<input type="file" name="imgs[]"/>
$file_obj = curl_file_create(realpath($file), 'image/png');
$data['imgs'][] = $file_obj;
也就是说是这种。但是这个会报错,Array to string conversion
我用http_build_query()来处理。但是这样处理之后$_FILES就接收不到值了
请问有没有什么办法,可以解决
1 回答
慕斯709654
TA贡献1840条经验 获得超5个赞
既然HTML input
的name
是imgs[]
,那curl也用这个就行了($data['imgs[]']=$file_obj
),而不是搞个数组。
- 1 回答
- 0 关注
- 447 浏览
添加回答
举报
0/150
提交
取消