Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

stream_context_get_params

Stream Funktionen

    Befehl:
array stream_context_get_params ( resource $stream_or_context )


    Parameter-Liste:
NameBeschreibung
stream_or_contextEin Stream Ressource oder Kontext Ressource

    Beschreibung:
Ruft Parameter und Optionen Informationen aus dem Stream oder Kontext.


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

    Siehe auch:
Setzt eine Option für einen stream/wrapper/context
 
Stellen Sie die Parameter für einen stream/wrapper/context
 

stream_context_get_params() - Beispiel:


Eingabe:
<?php
$ctx = stream_context_create();
$params = array("notification" => "stream_notification_callback");
stream_context_set_params($ctx, $params);

var_dump(stream_context_get_params($ctx));
?>


Ausgabe:
array(2) {
  ["notification"]=>
  string(28) "stream_notification_callback"
  ["options"]=>
  array(0) {
  }
}
Stream Funktionen