downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

stream_context_set_default> <stream_context_get_options
Last updated: Fri, 14 Aug 2009

view this page in

stream_context_get_params

(PHP 5 >= 5.3.0)

stream_context_get_paramsLit les paramètres d'un contexte

Description

array stream_context_get_params ( resource $stream_or_context )

stream_context_get_params() lit les paramètres du contexte ou du flux stream_or_context .

Liste de paramètres

stream_or_context

Une ressource de flux ou de contexte.

Valeurs de retour

Retourne un tableau associatif contenant les options de contexte et leur valeur.

Exemples

Exemple #1 Exemple avec stream_context_get_params()

Exemple simple.

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

var_dump(stream_context_get_params($ctx));
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Voir aussi



add a note add a note User Contributed Notes
stream_context_get_params
There are no user contributed notes for this page.

stream_context_set_default> <stream_context_get_options
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites