mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
23 lines
432 B
PHP
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
|