2

我必须用文件发送数组数据。仅使用数据可以正常工作:

$client->post('http://xxx/', [
    'form_params' => [
        [
            'data' => ['id' => 1234, 'name' => 'nombre'],
            'valid' => true
        ]
    ]
]);

但是由于我不能将“form_params”与“multipart”一起使用,那么如何发送带有数组和布尔数据的文件呢?

我试过了:

$client->post('http://xxx/', [
    'multipart' => [
        [
            'name'     => 'myfile',
            'contents' => fopen('my_file.txt', 'r'),
        ],
        [
            'name'     => 'data',
            'contents' => ['id' => 1234, 'name' => 'nombre'],
        ]
        [
            'name'     => 'valid',
            'contents' => true,
        ]
    ],
]);

但我收到一个错误,因为“内容”不接受布尔值或数组值。

我需要一些帮助。

谢谢

更新:我无法解决问题,最后我不得不使用一个不太好的解决方案,包括作为查询字符串的表单字段参数并仅使用 Multipart。就像是:

$client->post('http://xxx?id=1234&name=nombre', [
'multipart' => [
    [
        'name'     => 'myfile',
        'contents' => fopen('my_file.txt', 'r'),
    ],
],

]);

4

3 回答 3

5

根据 Guzzle 文档:

multipart 的值是一个关联数组的数组,每个包含以下键值对:

  • 名称:(字符串,必填)表单字段名称
  • 内容:(StreamInterface/resource/string,必需)要在表单元素中使用的数据。
  • headers:(数组)与表单元素一起使用的自定义标题的可选关联数组。
  • 文件名:(字符串)作为文件名发送的可选字符串。

所以看起来它只接受内容的字符串(直接或作为流)。他们可能的理由是,由于它是一个多部分的表格,您将分别发送每个数据点,如下所示......

$client->post('http://xxx/', [
    'multipart' => [
        [
            'name'     => 'myfile',
            'contents' => fopen('my_file.txt', 'r'),
        ],
        [
            'name'     => 'id',
            'contents' => '1234',
        ],
        [
            'name'     => 'name',
            'contents' => 'nombre',
        ],
        [
            'name'     => 'valid',
            'contents' => 'true',
        ]
    ],
]);

在不知道如何解析数据的情况下,我不能肯定这将是一个可行的选择,但由于它接受自定义标头,您可以将其作为 JSON 数组(以字符串形式)发送,然后设置内容类型:

$client->post('http://xxx/', [
    'multipart' => [
        [
            'name'     => 'myfile',
            'contents' => fopen('my_file.txt', 'r'),
        ],
        [
            'name'     => 'data',
            'contents' => '{"id":1234, "name":"nombre"}',
            'headers'  => ['Content-Type' => 'text/x-json']
        ],
        [
            'name'     => 'valid',
            'contents' => 'true',
        ]
    ],
]);

另一种选择是直接使用 cURL,但我确定你想避免这种情况,因为你使用的是 Guzzle。

更新

这不是我亲自测试过的东西,但这是你可以尝试的另一件事......(实际上我应该首先想到这一点)。

$client->post('http://xxx/', [
    'multipart' => [
        [
            'name'     => 'myfile',
            'contents' => fopen('my_file.txt', 'r'),
        ],
        [
            'name'     => 'data',
            'contents' => 'id=1234&name=nombre',
            'headers'  => ['Content-Type' => 'text/plain; charset=ISO-8859-1']
        ],
        [
            'name'     => 'valid',
            'contents' => true,
        ]
    ],
]);
于 2015-12-30T19:44:49.703 回答
4

有一个选项可以通过 Guzzle 一起发送上传文件和数组数据,但形式发生了变化:

$client->post('http://xxx/', [
    'multipart' => [
        [
            'name'     => 'myfile',
            'contents' => fopen('my_file.txt', 'r'),
        ],
        [
            'name'     => 'data[0][id]',
            'contents' => 1234,
        ],
        [
            'name'     => 'data[0][name]',
            'contents' => 'nombre',
        ],
        [
            'name'     => 'data[1][id]',
            'contents' => 2222,
        ],
        [
            'name'     => 'data[1][name]',
            'contents' => 'nombre2',
        ],
        [
            'name'     => 'valid',
            'contents' => true,
        ]
    ],
]);

另一方面,您可以使用$_POST['data']foreach 获取数据,然后执行以下操作:

foreach ($_POST['data'] as $data) {
    echo "Id: ".$data['id'];
    echo "Name: ".$data['name'];
}
于 2016-11-23T10:14:40.643 回答
2

您可以使用递归方法来获取数据数组并准备多部分数组:

private function prepareMultipartParams($params, $baseKey = null): array
{
    $result = [RequestOptions::MULTIPART => []];
    foreach ($params as $key => $value) {
        $key = $baseKey == null ? $key : "{$baseKey}[{$key}]";
        if (is_array($value))
            foreach ($this->prepareMultipartParams($value, $key) as $array)
                $result[RequestOptions::MULTIPART] = array_merge($result[RequestOptions::MULTIPART], $array);
        else
            $result[RequestOptions::MULTIPART][] = [
                'name' => $key,
                'contents' => $value instanceof UploadedFile ? fopen($value->path(), 'r+') : $value
            ];
    }

    return $result;
}
于 2019-12-21T11:27:57.693 回答