/PHP-8.0/ext/standard/tests/network/ |
H A D | fsockopen_basic.phpt | 2 Test fsockopen() function : basic functionality 5 echo "*** Testing fsockopen() : basic functionality ***\n"; 24 echo "\nCalling fsockopen() with all possible arguments:\n"; 25 $client = fsockopen($hostname, $port, $errno, $errstr, $timeout); 29 echo "\nCalling fsockopen() with mandatory arguments:\n"; 30 $second_client = fsockopen($hostname, $port); 36 $third_client = fsockopen($address); 43 *** Testing fsockopen() : basic functionality *** 46 Calling fsockopen() with all possible arguments: 49 Calling fsockopen() with mandatory arguments: [all …]
|
H A D | fsockopen_variation1.phpt | 2 testing fsockopen without a protocol string 16 echo "\nCalling fsockopen() without a protocol in the hostname string:\n"; 18 $client = fsockopen($hostname, $port); 22 echo "\nCalling fsockopen() with address and port in same string, without a protocol:\n"; 24 $second_client = fsockopen($address); 33 Calling fsockopen() without a protocol in the hostname string: 36 Calling fsockopen() with address and port in same string, without a protocol:
|
H A D | fsockopen_variation2.phpt | 2 testing fsockopen() with udp sockets 12 echo "\nCalling fsockopen():\n"; 13 $client = fsockopen($hostname, $port); 21 echo "\nCalling fsockopen() with address and port in same string:\n"; 23 $second_client = fsockopen($address); 37 Calling fsockopen(): 43 Calling fsockopen() with address and port in same string:
|
H A D | fsockopen_error.phpt | 2 Test fsockopen() function : error conditions 5 echo "*** Testing fsockopen() : basic error conditions ***\n"; 13 var_dump( fsockopen($hostname, $port, $errno, $errstr, $timeout) ); 22 var_dump( fsockopen($hostname, $port, $errno, $errstr, $timeout) ); 28 *** Testing fsockopen() : basic error conditions *** 32 Warning: fsockopen(): Unable to connect to tcp://127.0.0.1:31337 (%a) in %s on line %d 38 Warning: fsockopen(): Unable to connect to invalid://127.0.0.1:31337 (Unable to find the socket tra…
|
H A D | bug20134.phpt | 6 $fp = fsockopen("udp://localhost", 65534, $errno, $errstr);
|
/PHP-8.0/ext/opcache/tests/ |
H A D | php_cli_server.inc | 23 // it might not be listening yet...need to wait until fsockopen() call returns 28 $fp = @fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT);
|
/PHP-8.0/sapi/cli/tests/ |
H A D | php_cli_server.inc | 65 $error = @fsockopen( 102 $fp = fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT, $errno, $errstr, $timeout);
|
/PHP-8.0/ext/pdo_firebird/tests/ |
H A D | payload_server.inc | 42 // it might not be listening yet...need to wait until fsockopen() call returns 47 $fp = fsockopen("tcp://$bound");
|
/PHP-8.0/ext/curl/tests/ |
H A D | bug78775.phpt | 12 $sock = fsockopen("tls://google.com", 443);
|
H A D | server.inc | 49 // it might not be listening yet...need to wait until fsockopen() call returns 54 $fp = @fsockopen("tcp://$bound");
|
/PHP-8.0/ext/ldap/tests/ |
H A D | ldap_sasl_bind_basic.phpt | 11 $link = @fsockopen($host, $port);
|
H A D | ldap_set_rebind_proc_error.phpt | 13 $link = @fsockopen($host, $port);
|
/PHP-8.0/ext/standard/tests/streams/ |
H A D | stream_set_timeout_error.phpt | 16 $client = fsockopen("tcp://127.0.0.1:$port");
|
H A D | stream_get_meta_data_socket_variation3.phpt | 10 $client = fsockopen('tcp://127.0.0.1:31333');
|
H A D | stream_get_meta_data_socket_variation4.phpt | 10 $client = fsockopen('tcp://127.0.0.1:31334');
|
H A D | stream_get_meta_data_socket_variation2.phpt | 10 $client = fsockopen('tcp://127.0.0.1:31332');
|
H A D | stream_get_meta_data_socket_variation1.phpt | 10 $client = fsockopen('tcp://127.0.0.1:31331');
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | fgets_socket_variation1.phpt | 18 $client = fsockopen("tcp://127.0.0.1:$port");
|
H A D | fgets_socket_variation2.phpt | 29 $client = fsockopen("tcp://127.0.0.1:$port");
|
/PHP-8.0/ext/standard/ |
H A D | fsock.c | 131 PHP_FUNCTION(fsockopen) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 962 function fsockopen(string $hostname, int $port = -1, &$error_code = null, &$error_message = null, ?… function
|
H A D | basic_functions_arginfo.h | 2618 ZEND_FUNCTION(fsockopen); 3258 ZEND_FE(fsockopen, arginfo_fsockopen)
|
/PHP-8.0/ext/soap/tests/ |
H A D | bug73037.phpt | 101 $fp = fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT, $errno, $errstr, 5);
|
/PHP-8.0/sapi/fpm/tests/ |
H A D | fcgi.inc | 276 $this->_sock = fsockopen(
|
H A D | tester.inc | 483 $fp = @fsockopen($host, $this->getPort());
|