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