1--TEST--
2Test parameter handling in socket_select().
3--EXTENSIONS--
4sockets
5--FILE--
6<?php
7$sockets = null;
8$write   = null;
9$except  = null;
10$time    = 0;
11
12try {
13    socket_select($sockets, $write, $except, $time);
14} catch (ValueError $exception) {
15    echo $exception->getMessage() . "\n";
16}
17?>
18--EXPECT--
19socket_select(): At least one array argument must be passed
20--CREDITS--
21Till Klampaeckel, till@php.net
22Berlin TestFest 2009
23