php curl模拟input数组形式上传图片
能不能通过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就接收不到值了
请问有没有什么办法,可以解决
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然HTML
input
的name
是imgs[]
,那curl也用这个就行了($data['imgs[]']=$file_obj
),而不是搞个数组。