我想将下面的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);
- 1 回答
- 0 关注
- 106 浏览
添加回答
举报
0/150
提交
取消