Patch stream_context_set_option_error_001.phpt for Testing related Bug #60478
Patch version 2011-12-09 09:50 UTC
Return to Bug #60478 |
Download this patch
Patch Revisions:
Developer: jm@jmfontaine.net
--TEST--
stream_context_set_option() function - error : invalid argument
--CREDITS--
Jean-Marc Fontaine <jean-marc.fontaine@alterway.fr>
# Alter Way Contribution Day 2011
--FILE--
<?php
$context = stream_context_create();
// Single option
var_dump(stream_context_set_option($context, 'http'));
// Array of options
var_dump(stream_context_set_option($context, array(), 'foo', 'bar'));
?>
--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)
|