Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

stream_context_get_default

Stream Funktionen

    Befehl:
resource stream_context_get_default ([ array $options ] )


    Parameter-Liste:
NameBeschreibung
optionsoptions muss ein assoziatives Array von assoziativen Arrays im Format $arr['wrapper']['option'] = $value.

    Beschreibung:
Gibt die Standard-Stream Kontext verwendet werden, wenn die Datei-Operationen (fopen(), ist file_get_contents(), etc. ..) werden ohne Kontext aufgerufen Parameter. Optionen für den Standard-Rahmen kann optional mit dieser Funktion mit der gleichen Syntax wie stream_context_create() angegeben werden.


    Aktiv in Version:
(PHP 5 >= 5.1.0)

    Hinweis:
Hinweis:

Ab PHP 5.3.0, die stream_context_set_default() Funktion kann verwendet werden, um die Standard-Kontext gesetzt werden.


    Siehe auch:
Erzeugt einen Stream Kontext
 

stream_context_get_default() - Beispiel:


Eingabe:
<?php
$default_opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Cookie: foo=bar",
    'proxy'=>"tcp://10.54.1.39:8000"
  )
);


$alternate_opts = array(
  'http'=>array(
    'method'=>"POST",
    'header'=>"Content-type: application/x-www-form-urlencoded\r\n" .
              "Content-length: " . strlen("baz=bomb"),
    'content'=>"baz=bomb"
  )
);

$default = stream_context_get_default($default_opts);
$alternate = stream_context_create($alternate_opts);

/* Sends a regular GET request to proxy server at 10.54.1.39
 * For www.example.com using context options specified in $default_opts
 */
readfile('http://www.example.com');

/* Sends a POST request directly to www.example.com
 * Using context options specified in $alternate_opts
 */
readfile('http://www.example.com', false, $alternate);
?>

Stream Funktionen