为了账号安全,请及时绑定邮箱和手机立即绑定

如何将 Curl 命令转换为 php 的 -i -t 选项

如何将 Curl 命令转换为 php 的 -i -t 选项

PHP
MMTTMM 2023-07-30 13:07:52
我想将下面的curl命令转换为php,我尝试从https://incarnate.github.io/curl-to-php/进行转换,但它没有正确转换。我如何<myobject>在 php 中设置curl?我没有得到。有人能帮我吗?curl -i -T <myobject> -X PUT -H "X-Auth-Token: <token>" <storage url>
查看完整描述

1 回答

?
ITMISS

TA贡献1871条经验 获得超8个赞

看起来你想使用curl来上传文件......

// initialise the curl request

$request = curl_init('http://example.com/');


// send a file

curl_setopt($request, CURLOPT_POST, true);

curl_setopt(

    $request,

    CURLOPT_POSTFIELDS,

    array(

      'file' => '@' . realpath('example.txt')

    ));


// output the response

curl_setopt($request, CURLOPT_RETURNTRANSFER, true);

echo curl_exec($request);


// close the session

curl_close($request);


查看完整回答
反对 回复 2023-07-30
  • 1 回答
  • 0 关注
  • 106 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信