CURL模拟客户端 post语音文件有关问题,求大神指教
程序员文章站
2024-02-11 11:10:46
...
CURL模拟客户端 post语音文件问题,求大神指教
我需要从php模拟客户端发送语音文件(arm格式)到服务器端PostStream.aspx页面,出现问题,用方法一指定路径发送过去会比原语音文件稍大,aaa.amr:
------------------------------fa24ee50a8c6
Content-Disposition: form-data; name="upimg"; filename="aaa.amr"
Content-Type: application/octet-stream
。。。语音文件编码。。。
-----------------fa24ee50a8c6--
我用记事本打开aaa.amr后发现多了Content-Disposition:XXX和Content-Type:XXX 这些东西,那么这个语音文件肯定不能播放
这是我的代码
方法①:
我需要从php模拟客户端发送语音文件(arm格式)到服务器端PostStream.aspx页面,出现问题,用方法一指定路径发送过去会比原语音文件稍大,aaa.amr:
------------------------------fa24ee50a8c6
Content-Disposition: form-data; name="upimg"; filename="aaa.amr"
Content-Type: application/octet-stream
。。。语音文件编码。。。
-----------------fa24ee50a8c6--
我用记事本打开aaa.amr后发现多了Content-Disposition:XXX和Content-Type:XXX 这些东西,那么这个语音文件肯定不能播放
这是我的代码
方法①:
$file = array("audio"=>"@E:/POSTSTREAM/s.amr");//文件路径,前面要加@,表明是文件上传.
$curl = curl_init("http://xxx.xxx.xxx.xxx:xxx/ddppls/PostStream.aspx?pack={1411}{615044}{7348}{534310}");
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl,CURLOPT_POST,1);
curl_setopt($curl,CURLOPT_POSTFIELDS,$file);
$response= curl_exec($curl);
curl_close($curl);
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论