1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/ext/sockets/tests/socket_set_block-wrongparams.phpt
2009-05-17 18:07:36 +00:00

19 lines
416 B
PHP

--TEST--
Test if socket_set_block throws E_WARNING with wrong parameters.
--SKIPIF--
<?php
if (!extension_loaded('sockets')) {
die('SKIP The sockets extension is not loaded.');
}
?>
--FILE--
<?php
socket_set_block(array());
?>
--EXPECTF--
Warning: socket_set_block() expects parameter 1 to be resource, array given in %s on line %d
--CREDITS--
Robin Mehner, robin@coding-robin.de
PHP Testfest Berlin 2009-05-09