我将使用 php 转换一些文件并将其作为 HTTP POST 请求的一部分发送。我的代码有一部分:
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => "Content-type: " . $this->contentType."",
'content' => "file=".$file
)
));
$data = file_get_contents($this->url, false, $context);
变量是否$file
必须是我要发送的文件的字节表示?
那是在不使用表单的情况下在 php 中发送文件的正确方法吗?你有什么线索吗?
还有什么是使用PHP将文件转换为字节表示的方法?