Farklı içerik türleri ile kıvrılma ile çok parçalı veri koymak

1 Cevap php

Php belgeleri o söz etmez, çünkü ben bu soruyu sormak istiyorum

Nasıl bir araya xml veri ve ikili veri koymak istiyorsunuz?

$imagecontent = @file_get_contents($imagelocation);
$xmldata ="<xml></xml>";
$headers = array("MIME-version: 1.0");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt($ch, CURLOPT_POSTFIELDS,$data);

I know that if you pass $data as an array, curl automaticly is set to multipart, but how can you associate the different content types with the different contentvariables?

$xmldata
$imagecontent
Content-Type: application/atom+xml
Content-Type: "jpg"

I have some sample wich is done with fputs and is more inline and uses boundary. I don't know if you also have to do that with curl and if so how to do it?

Herkes bazı SampleCode lütfen verebilir misiniz?

teşekkürler, Richard

1 Cevap

Ben sadece buldum answer to similar question ve sizin için yararlı olabilir.