Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

stream_context_set_default

Stream Funktionen

    Befehl:
resource stream_context_set_default ( array $options )


    Parameter-Liste:
NameBeschreibung
optionsDie Optionen für die Standard-Kontext gesetzt.

    Beschreibung:
Stellen Sie die Standard Stream Kontext, die verwendet werden, wenn Datei-Operationen (fopen(), file_get_contents(), etc. ..) werden ohne eine genannt context-Parameters. Verwendet die gleiche Syntax wie stream_context_create().


    Aktiv in Version:
(PHP 5 >= 5.3.0, PHP 7)

    Siehe auch:
Erzeugt einen Stream Kontext
 
Ermittelt die Standard-Stream Kontext
 

stream_context_set_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"
  )
);

$default = stream_context_set_default($default_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');
?>

Stream Funktionen