public function actionPutdoc()
{
$url = 'https://site.kz/docs/api/contractset';
$postdata = http_build_query(
array(
'login' => 'v.pupkin',
'type_id'=>209,
'cat_id'=>262,
'doc_bin'=>'000000000',
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents($url,false, $context);
if ($result === FALSE) { }
var_dump($result);
}
Шлю такой запрос, есть ли возможность прикрепить файл?