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