我想在file_get_contents
的其他服务器中发送jpg文件?
我将此用于POST
数据,但如果我将jpg文件放在data
数组
$postdata = http_build_query(
array(
'collection' => 'test',
'data' => array('name'=>'Test name','Surname'=>'Test Surname')
)
);
$opts = array(
'http' => array(
'method' => "POST",
'header' => "Connection: close\r\n".
"Content-type: application/x-www-form-urlencoded\r\n".
"Content-Length: ".strlen($postdata)."\r\n",
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://localhost/test/index.php/save-doc', false, $context);