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

How to Convert Curl command to php for -i -t option

我想将下面的 curl 命令转换为 php,我尝试从 https://incarnate.github.io/curl-to-php/ 转换,但转换不正确。如何在 php curl 中设置 <myobject>?我没有得到。谁能帮我解决这个问题?

curl -i -T <myobject> -X PUT -H "X-Auth-Token: <token>" <storage url>

您似乎想使用 curl 上传文件...

Example

// 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);