1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/sockets/tests/socket_select-wrongparams-2.phpt
2021-06-29 17:13:02 +02:00

23 lines
432 B
PHP

--TEST--
Test parameter handling in socket_select().
--EXTENSIONS--
sockets
--FILE--
<?php
$sockets = null;
$write = null;
$except = null;
$time = 0;
try {
socket_select($sockets, $write, $except, $time);
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
socket_select(): At least one array argument must be passed
--CREDITS--
Till Klampaeckel, till@php.net
Berlin TestFest 2009