1--TEST--
2stream_context_set_option() function - error : invalid argument
3--CREDITS--
4Jean-Marc Fontaine <jean-marc.fontaine@alterway.fr>
5# Alter Way Contribution Day 2011
6--FILE--
7<?php
8$context = stream_context_create();
9
10// Single option
11var_dump(stream_context_set_option($context, 'http'));
12
13// Array of options
14var_dump(stream_context_set_option($context, array(), 'foo', 'bar'));
15?>
16--EXPECTF--
17Warning: stream_context_set_option(): called with wrong number or type of parameters; please RTM in %s on line %d
18bool(false)
19
20Warning: stream_context_set_option(): called with wrong number or type of parameters; please RTM in %s on line %d
21bool(false)
22