File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / streams / stream_context_get_params_001.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
stream_context_get_params()
--FILE--
<?php

$ctx = stream_context_create();
var_dump($ctx);
var_dump(stream_context_get_params($ctx));

var_dump(stream_context_set_option($ctx, "foo","bar","baz"));
var_dump(stream_context_get_params($ctx));

var_dump(stream_context_set_params($ctx, array("notification" => "stream_notification_callback")));
var_dump(stream_context_get_params($ctx));

var_dump(stream_context_set_params($ctx, array("notification" => array("stream","notification_callback"))));
var_dump(stream_context_get_params($ctx));

var_dump(stream_context_get_params($ctx));
var_dump(stream_context_get_options($ctx));
var_dump(stream_context_get_params($ctx));
var_dump(stream_context_get_options($ctx));

?>
--EXPECTF--
resource(%d) of type (stream-context)
array(1) {
  [%u|b%"options"]=>
  array(0) {
  }
}
bool(true)
array(1) {
  [%u|b%"options"]=>
  array(1) {
    [%u|b%"foo"]=>
    array(1) {
      [%u|b%"bar"]=>
      %unicode|string%(3) "baz"
    }
  }
}
bool(true)
array(2) {
  [%u|b%"notification"]=>
  %unicode|string%(28) "stream_notification_callback"
  [%u|b%"options"]=>
  array(1) {
    [%u|b%"foo"]=>
    array(1) {
      [%u|b%"bar"]=>
      %unicode|string%(3) "baz"
    }
  }
}
bool(true)
array(2) {
  [%u|b%"notification"]=>
  array(2) {
    [0]=>
    %unicode|string%(6) "stream"
    [1]=>
    %unicode|string%(21) "notification_callback"
  }
  [%u|b%"options"]=>
  array(1) {
    [%u|b%"foo"]=>
    array(1) {
      [%u|b%"bar"]=>
      %unicode|string%(3) "baz"
    }
  }
}
array(2) {
  [%u|b%"notification"]=>
  array(2) {
    [0]=>
    %unicode|string%(6) "stream"
    [1]=>
    %unicode|string%(21) "notification_callback"
  }
  [%u|b%"options"]=>
  array(1) {
    [%u|b%"foo"]=>
    array(1) {
      [%u|b%"bar"]=>
      %unicode|string%(3) "baz"
    }
  }
}
array(1) {
  [%u|b%"foo"]=>
  array(1) {
    [%u|b%"bar"]=>
    %unicode|string%(3) "baz"
  }
}
array(2) {
  [%u|b%"notification"]=>
  array(2) {
    [0]=>
    %unicode|string%(6) "stream"
    [1]=>
    %unicode|string%(21) "notification_callback"
  }
  [%u|b%"options"]=>
  array(1) {
    [%u|b%"foo"]=>
    array(1) {
      [%u|b%"bar"]=>
      %unicode|string%(3) "baz"
    }
  }
}
array(1) {
  [%u|b%"foo"]=>
  array(1) {
    [%u|b%"bar"]=>
    %unicode|string%(3) "baz"
  }
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>