我在将文件发布到使用cURL构建的API时遇到问题。
我可以发布小图片(比如说4KB)但是当我尝试附加一个大图像时,我收到以下错误:
卷曲错误:创建formpost数据失败
我用来进行cURL调用的代码如下:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
try {
switch($type) {
case "GET":
break;
case "POST":
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $vars);
break;
case "PUT":
$fh = fopen('php://memory', 'rw');
$data = http_build_query($vars, '', '&');
fwrite($fh, $data);
rewind($fh);
curl_setopt($ch, CURLOPT_INFILE, $fh);
curl_setopt($ch, CURLOPT_INFILESIZE, strlen($data));
curl_setopt($ch, CURLOPT_PUT, true);
break;
case "DELETE":
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
break;
default:
throw new InvalidArgumentException('Current verb is an invalid REST verb.');
}
} catch (InvalidArgumentException $e) {
curl_close($ch);
throw $e;
} catch (Exception $e) {
curl_close($ch);
throw $e;
}
$result = curl_exec($ch);
$info = curl_getinfo($ch);
if(curl_errno($ch)) {
echo 'Curl error: ' . curl_error($ch);
}
curl_close($ch);
是否有通过cURL上传图片的文件大小上限。
我们将不胜感激。
答案 0 :(得分:0)
您可能遇到了服务器上设置的限制。 Apache具有LimitRequestBody
指令,允许服务器管理员限制上载大小。您可以在此处详细了解:http://httpd.apache.org/docs/2.1/mod/core.html#limitrequestbody
服务器管理员也可以对Windows IIS服务应用限制,尽管只能从6.0开始可靠。