mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
25 lines
519 B
PHP
25 lines
519 B
PHP
--TEST--
|
|
Test parameter handling in socket_select().
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('sockets')) {
|
|
die('SKIP The sockets extension is not loaded.');
|
|
}
|
|
--FILE--
|
|
<?php
|
|
$sockets = null;
|
|
$write = null;
|
|
$except = null;
|
|
$time = 0;
|
|
|
|
try {
|
|
socket_select($sockets, $write, $except, $time);
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
socket_select(): At least one array argument must be passed
|
|
--CREDITS--
|
|
Till Klampaeckel, till@php.net
|
|
Berlin TestFest 2009
|