PHP
Referenzliste
stream_context_create
Stream Funktionen
Befehl:
resource stream_context_create ([ array $options [, array $params ]] )
Parameter-Liste:
Beschreibung | |
---|---|
Muss ein assoziatives Array von assoziativen Arrays im Format $arr['wrapper'] ['option']=$value sein. Standard auf ein leeres Array. | |
Muss ein assoziatives Array im Format $arr['parameter']=$value sein. Siehe Kontext Parameter für eine Liste von Standard-Stream-Parameter. |
Beschreibung:
Erstellt und gibt einen Stream Kontext mit allen Optionen in
options
geliefert voreingestellt. Aktiv in Version:
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
Siehe auch:
stream_context_create() - Beispiel:
Eingabe:
<?php $opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept-language: en\r\n" . "Cookie: foo=bar\r\n" ) ); $context = stream_context_create($opts); /* Sends an http request to www.example.com with additional headers shown above */ $fp = fopen('http://www.example.com', 'r', false, $context); fpassthru($fp); fclose($fp); ?>
Beschreibung:
Beschreibung | |
---|---|
5.3.0 | Hinzugefügt wurde die optional params Argument. |
Stream Funktionen