CURL Kontextoptionen
CURL Kontextoptionen — Liste der CURL Kontextoptionen
Beschreibung
Die CURL Kontextoptionen sind verfügbar, wenn die CURL-Erweiterung mit Hilfe der Konfigurationsoption --with-curlwrappers kompiliert wurde.
Beispiele
Beispiel #1 Hole eine Seite und sende POST-Daten
<?php
$postdata = http_build_query(
array(
'var1' => 'etwas Inhalt',
'var2' => 'autsch'
)
);
$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);
?>