CURL context options

Оновлено: 11.05.2023

Контекстні опції CURL - список контекстних опцій CURL

Параметри контексту CURL доступні, якщо розширення CURL було скомпільовано за допомогою параметра конфігурації --with-curlwrappers.

Приклад #1 Отримати сторінку та надіслати POST-дані

<?php

$postdata = http_build_query(
    array(
        'var1' => 'some content',
        'var2' => 'doh'
    )
);

$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('http://example.com/submit.php', false, $context);

?>