我想知道它可以以某种方式自动将图像附加到输入类型="文件"那是在我的服务器上。
例如,我希望用户转到显示表单的页面,但是当他们提交表单时,会使用它提交picture.png。
<form action="server I wanna send the picture too">
<input type="text">
<input type="file" value="picture.png" name="img" style="display:none;">
</form>
如果这种方式不可能,是否可以卷曲?
curl_setopt($ch, CURLOPT_URL, 'server I wanna send the picture too');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'img='.file_get_contents('picture.png'));
$answer = curl_exec($ch);
if (curl_error($ch)) {
echo curl_error($ch);
}