我正在尝试(PHP)使用 S3 流包装器将文件从 Amazon S3 卷曲到 Vimeo(s3://...)
并收到以下错误:
curl_setopt_array():不能将 tcp_socket/ssl 类型的流表示为 [...] 中的 STDIO 文件
有没有办法卷曲 PUT 远程文件?这是正在发送的 curl 选项:
$curl_opts = array(
CURLOPT_PUT => true,
CURLOPT_INFILE => $file, // this refers to 's3://path-to-object'
CURLOPT_INFILESIZE => $size,
CURLOPT_UPLOAD => true,
CURLOPT_HTTPHEADER => array('Expect: ', 'Content-Range: replaced...')
);