php http 手动构造请求体


在使用cURL发送multipart/form-data格式的请求时,如果需要指定其中某个字符串字段的类型为JSON,可以通过在该字段的内容中嵌入JSON字符串并适当地设置其Content-Type来实现。在命令行cURL中,这通常是通过--form参数的特殊语法实现的。

在PHP中使用cURL模拟这种行为稍微复杂一些,因为PHP的cURL函数不直接支持为multipart/form-data请求的各个部分设置不同的Content-Type。不过,可以通过手动构造请求体的每个部分来实现这一点。

以下是一个示例PHP脚本,展示如何构造这样的请求:

<?php

// 图片文件路径
$filePath = '/path/to/your/image.jpg'; // 替换为实际路径

// JSON数据
$jsonData = json_encode(array("registerNumber" => "XXXXXXXXXXXXXXXX"));

// 创建一个CURLFile对象用于图片上传
$cfile = curl_file_create($filePath, 'image/jpeg', basename($filePath));

// 初始化cURL会话
$ch = curl_init();

// 构造multipart/form-data体
$boundary = uniqid();
$delimiter = '-------------' . $boundary;
$post_data = build_multipart_body($delimiter, $jsonData, $cfile);

// 设置cURL选项
curl_setopt($ch, CURLOPT_URL, 'http://lXXXXX.XX/api/v1/XX');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    "Authorization: Bearer your_bearer_token_here",
    "Content-Type: multipart/form-data; boundary=" . $delimiter,
    "cache-control: no-cache"
));

// 执行cURL会话
$result = curl_exec($ch);

// 检查是否有错误发生
if(curl_errno($ch)){
    echo 'Curl error: ' . curl_error($ch);
}

// 关闭cURL会话
curl_close($ch);

// 输出结果
echo $result;

// 构造multipart/form-data体的函数
function build_multipart_body($delimiter, $json, $file) {
    // JSON部分
    $body = "--" . $delimiter . "\r\n"
          . "Content-Disposition: form-data; name=\"bean\"\r\n"
          . "Content-Type: application/json\r\n\r\n"
          . $json . "\r\n";

    // 文件部分
    $body .= "--" . $delimiter . "\r\n"
           . "Content-Disposition: form-data; name=\"liftCar\"; filename=\"" . basename($file->name) . "\"\r\n"
           . "Content-Type: " . $file->mime . "\r\n\r\n"
           . file_get_contents($file->name) . "\r\n";

    // 结束符
    $body .= "--" . $delimiter . "--\r\n";

    return $body;
}

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注