Guzzle~6.0 multipart和form_params

时间:2015-06-04 14:03:43

标签: php curl guzzle

我正在尝试上传文件并同时发送帖子参数:

$response = $client->post('http://example.com/api', [
    'form_params' => [
        'name' => 'Example name',
    ],
    'multipart' => [
        [
            'name'     => 'image',
            'contents' => fopen('/path/to/image', 'r')
        ]
    ]
]);

但是我的form_params字段被忽略,我的帖子正文中只有多部分字段。我可以用guzzle 6.0发送两者吗?

4 个答案:

答案 0 :(得分:24)

我遇到了同样的问题。您需要将form_params添加到multipart数组。其中'name'是表单元素名称,'contents'是值。您提供的示例代码将变为:

$response = $client->post('http://example.com/api', [
    'multipart' => [
        [
            'name'     => 'image',
            'contents' => fopen('/path/to/image', 'r')
        ],
        [
            'name'     => 'name',
            'contents' => 'Example name'
        ]
    ]
]);

答案 1 :(得分:3)

我也到了那里,但不幸的是,如果你有多维params数组它不起作用。我让它工作的唯一方法是将form_paramaters作为查询参数发送到数组中:

$response = $client->post('http://example.com/api', [
    'query' => [
        'name' => 'Example name',
    ],
    'multipart' => [
        [
            'name'     => 'image',
            'contents' => fopen('/path/to/image', 'r')
        ]
    ]
]);

答案 2 :(得分:0)

我用谷歌搜索了类似的问题,并在此处写下建议:

请勿为多部分请求手动设置标题“ Content-Type”。

答案 3 :(得分:0)

    $body['query'] = $request->input();
        if($_FILES)
         {
            $filedata = [];
            foreach( $_FILES as $key => $file){               
                if(!($file['tmp_name'] == '')){
                    $file['filename'] = $file['name'];
                    $file['name']=$key;
                    $file['contents'] = fopen($file['tmp_name'], 'r');
                    $file['headers'] = array('Content-Type' => mime_content_type($file['tmp_name']));
                }
                else{
                    $file['contents'] = '';
                }
                array_push($filedata, $file);
            }
        $body['multipart'] = $filedata;
        }

        $header= ['headers'=>[
                    'User-Agent' => 'vendor/1.0',
                    'Content-Type' =>'multipart/form-data',
                    'Accept'     => 'application/json',
                    'Authorization' => "Authorization: Bearer ".$token,
                ]];
        $client = new Client($header);
        $response = $client->POST($url, $body);
        $response=json_decode($response->getBody());