php curl上传文件时为文件设置mime_type
最近在通过php发送文件时发现对方无法获取到文件的正确格式,因为mime_type输出为:
application/octet-stream
为了让对方正确识别我们的文件类型,需要在curl发送时设置mime_type
$reqData = [
    'app' => $this->app,
    'file' => new \CURLFile($filename, $mime),
];
$response = curl($apiPath, $reqData);
$mime='image/png'
访客
邮箱
网址

通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作


  • 自动写文案
  • 自动写小说
  • 马上扫码让Ai帮你完成工作
通用的占位符缩略图

人工智能机器人,扫码免费帮你完成工作

  • 自动写论文
  • 自动写软件
  • 我不是人,但是我比人更聪明,我是强大的Ai
Top