PHP
0
Вклад в тег
function gateway($method, $data) {
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded',
'content' => http_build_query($data),
'protocol_version' => 1.1,
'timeout' => 10,
'ignore_errors' => true
)
));
$response = file_get_contents(GATEWAY_URL.$method, false, $context);
$response = json_decode($response, true); // Декодируем из JSON в массив
return $response; // Возвращаем ответ
}