在请求中发送字节数据

时间:2015-12-18 09:21:42

标签: php curl byte

嗨我在请求中只发送字节数据时遇到了麻烦

我只想发送 [来自数据流的字节数] ,但是从我的curl请求中剥离出来这很麻烦。

请有人帮我解决这个问题。

-----------------------------7dc1f42e3005a8
Content-Disposition: form-data; name="upload"; filename="file.mp3"
Content-Type: audio/mpeg

**[bytes from data stream]**

-----------------------------7dc1f42e3005a8--

我正在使用下面的卷曲,我想知道在卷曲中是否有一种快速的方式只发送一个特定的加载部分,在这种情况下只有字节数据。

$fp             = fopen($localfile['tmp_name'], 'r');
$ch             = curl_init();

curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); // --data-binary
curl_setopt($ch, CURLOPT_URL, 'http://api.com/api/v4/track/upload?api_key=xxx&filetype=mp3');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/octet-stream'));

$response   = curl_exec($ch);

1 个答案:

答案 0 :(得分:0)

您可以使用以下解决方案

//your url
$url = 'http://localhost/test/test.php';

$file = realpath('php1.php');

// build multipart
//set appropriate content type in headers

$params  = "--ABC1234\r\n"
    . "Content-Type: application/x-www-form-urlencoded\r\n"
    . "--ABC1234\r\n"
    . "Content-Type: text/php\r\n"
    . "Content-Disposition: attachment; filename=\"php1.php\"\r\n"
    . "\r\n"
    . file_get_contents($file) . "\r\n"
    . "--ABC1234--";

$first_newline      = strpos($params, "\r\n");
$multipart_boundary = substr($params, 2, $first_newline - 2);
$request_headers    = array();
$request_headers[]  = 'Content-Length: ' . strlen($params);
$request_headers[]  = 'Content-Type: multipart/form-data; boundary=' . $multipart_boundary;

// send the request now

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers);

$reply = curl_exec($ch);
curl_close ($ch);

另一方面,您可以在$_FILES变量中获取上传文件。

在本地服务器上测试。

希望这会对你有所帮助。