Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

stream_context_get_options

Stream Funktionen

    Befehl:
array stream_context_get_options ( resource $stream_or_context )


    Parameter-Liste:
NameBeschreibung
stream_or_contextDer Stream oder Kontext zu bekommen Optionen aus

    Beschreibung:
Gibt ein Array von Optionen auf dem angegebenen Stream oder Kontext.


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

stream_context_get_options() - Beispiel:


Eingabe:
<?php
$params = array("method" => "POST");

stream_context_get_default(array("http" => $params));

var_dump(stream_context_get_options(stream_context_get_default()));
?>


Ausgabe:
array(1) {
  ["http"]=>
  array(1) {
    ["method"]=>
    string(4) "POST"
  }
}
Stream Funktionen