php-8.0.30-src/ext/sockets/tests/socket_select_error.phpt

18 lines
396 B
PHP

--TEST--
socket_select() error conditions
--SKIPIF--
<?php
if (!extension_loaded('sockets')) die('skip socket extension not available');
?>
--FILE--
<?php
$r = $w = $e = ['no resource'];
try {
socket_select($r, $w, $e, 1);
} catch (TypeError $ex) {
echo $ex->getMessage(), PHP_EOL;
}
?>
--EXPECT--
socket_select(): Argument #1 ($read) must only have elements of type Socket, string given