stream_context_get_params

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

stream_context_get_paramsRecuperar los parámetros de un contexto

Descripción

stream_context_get_params(resource $stream_or_context): array

Recupera la información de los parámetros y de las opciones de un flujo o contexto.

Parámetros

stream_or_context

Un resource de flujo o un resource de contexto

Valores devueltos

Devuelve una matriz asociativa que contiene todas las opciones y parámetros del contexto.

Ejemplos

Ejemplo #1 Ejemplo de stream_context_get_params()

Ejemplo de uso básico

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

var_dump(stream_context_get_params($ctx));
?>

El resultado del ejemplo sería algo similar a:

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

Ver también

add a note add a note

User Contributed Notes 1 note

up
0
m dot staas at goowy dot com
8 years ago
Note that if the resource parameter is invalid the function will return a boolean with value false.

The code:
$r = null
$cert = stream_context_get_params($r);
var_dump($cert);

will return:
bool(false)
To Top