mirror of
https://github.com/php/php-src.git
synced 2026-03-30 12:13:02 +02:00
34 lines
824 B
PHP
34 lines
824 B
PHP
--TEST--
|
|
ext/sockets - socket_connect - test with empty parameters
|
|
--CREDITS--
|
|
Florian Anderiasch
|
|
fa@php.net
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('sockets')) {
|
|
die('skip - sockets extension not available.');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$rand = rand(1,999);
|
|
$s_c = socket_create_listen(31330+$rand);
|
|
// wrong parameter count
|
|
try {
|
|
$s_w = socket_connect($s_c);
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
$s_w = socket_connect($s_c, '0.0.0.0');
|
|
$s_w = socket_connect($s_c, '0.0.0.0', 31330+$rand);
|
|
|
|
socket_close($s_c);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
socket_connect() expects at least 2 parameters, 1 given
|
|
|
|
Warning: socket_connect(): Socket of type AF_INET requires 3 arguments in %s on line %d
|
|
|
|
Warning: socket_connect(): unable to connect [%i]: %a in %s on line %d
|