Home
last modified time | relevance | path

Searched refs:host (Results 51 – 75 of 611) sorted by relevance

12345678910>>...25

/PHP-8.0/ext/ldap/tests/
H A Dldap_exop_passwd.phpt12 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
22 test_bind($host, $port, "cn=userA,$base", $genpw, $protocol_version),
24 test_bind($host, $port, "cn=userA,$base", "newPassword", $protocol_version)
31 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dskipifcontrol.inc6 global $host, $port, $user, $passwd, $protocol_version, $base;
7 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_exop_refresh.phpt9 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
20 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
36 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_close.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
13 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
H A Dmysqli_unclonable.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
H A Dmysqli_dump_debug_info.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
13 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
H A Dmysqli_get_host_info.phpt16 …if ($IS_MYSQLND && $host != 'localhost' && $host != '127.0.0.1' && $port != '' && $host != "" && s…
H A Dmysqli_connect.phpt51 if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket))
52 …printf("[008] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
53 $host, $user, $db, $port, $socket);
57 …if ($link = mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port, $so…
59 $host, $user . 'unknown_really', $db, $port, $socket);
66 if (!is_object($link = mysqli_connect($host, $user, $passwd, $db, $port))) {
77 if (!is_object($link = mysqli_connect($host, $user, $passwd, $db))) {
88 if (!is_object($link = mysqli_connect($host, $user))) {
99 if (!is_object($link = mysqli_connect($host))) {
109 ini_set('mysqli.default_host', $host);
[all …]
H A Dmysqli_dump_debug_info_oo.phpt15 if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
16 …"[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket…
H A Dmysqli_result_unclonable.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
H A Dmysqli_stmt_unclonable.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
14 $host, $user, $db, $port, $socket);
H A Dmysqli_close_oo.phpt15 if (!$mysqli = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
16 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
17 $host, $user, $db, $port, $socket);
H A Dbug53503.phpt8 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
24 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
54 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
55 …printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%…
56 $host, $user, $db, $port, $socket);
H A Dbug39457.phpt13 $mysql->connect($host, $user, $passwd, $db, $port, $socket);
15 $mysql->connect($host, $user, $passwd, $db, $port, $socket);
H A Dbug51605.phpt18 if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)) {
25 if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)) {
32 if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)) {
H A Dbug79084_collision.phpt14 $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
23 $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
31 $link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
/PHP-8.0/ext/phar/
H A Ddirstream.c308 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_open_dir()
309 if (resource->host && !resource->path) { in phar_wrapper_open_dir()
325 host_len = ZSTR_LEN(resource->host); in phar_wrapper_open_dir()
329 if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) { in phar_wrapper_open_dir()
334 …tream_wrapper_log_error(wrapper, options, "phar file \"%s\" is unknown", ZSTR_VAL(resource->host)); in phar_wrapper_open_dir()
431 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_mkdir()
443 host_len = ZSTR_LEN(resource->host); in phar_wrapper_mkdir()
445 if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) { in phar_wrapper_mkdir()
566 if (!resource->scheme || !resource->host || !resource->path) { in phar_wrapper_rmdir()
578 host_len = ZSTR_LEN(resource->host); in phar_wrapper_rmdir()
[all …]
H A Dstream.c88 resource->host = zend_string_init(arch, arch_len, 0); in phar_parse_url()
99 fprintf(stderr, "Host: %s\n", ZSTR_VAL(resource->host)); in phar_parse_url()
119 …if (phar_open_or_create_filename(ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, 0, o… in phar_parse_url()
142 …if (phar_open_from_filename(ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, options, … in phar_parse_url()
190 host_len = ZSTR_LEN(resource->host); in phar_wrapper_open_url()
575 host_len = ZSTR_LEN(resource->host); in phar_wrapper_stat()
686 host_len = ZSTR_LEN(resource->host); in phar_wrapper_unlink()
749 …UCCESS != phar_get_archive(&pfrom, ZSTR_VAL(resource_from->host), ZSTR_LEN(resource_from->host), N… in phar_wrapper_rename()
766 …if (SUCCESS != phar_get_archive(&pto, ZSTR_VAL(resource_to->host), ZSTR_LEN(resource_to->host), NU… in phar_wrapper_rename()
778 if (!zend_string_equals(resource_from->host, resource_to->host)) { in phar_wrapper_rename()
[all …]
/PHP-8.0/ext/standard/tests/http/
H A Dbug79265_2.phpt2 Bug #79265 variation: "host:" not at start of header
20 'header'=>"RandomHeader: host:8080\r\n" .
36 RandomHeader: host:8080
/PHP-8.0/ext/curl/tests/
H A Dcurl_writeheader_callback.phpt7 Hit the host and determine that the headers are sent to the callback specified for CURLOPT_HEADERFU…
20 $host = curl_cli_server_start();
25 curl_setopt($ch, CURLOPT_URL, $host);
H A Dcurl_setopt_basic003.phpt12 $host = curl_cli_server_start();
17 $url = "{$host}/";
35 curl_setopt($ch, CURLOPT_URL, $host);
H A Dbug46739.phpt10 $host = curl_cli_server_start();
11 $ch = curl_init("{$host}/get.inc");
/PHP-8.0/sapi/cli/tests/
H A Dphp_cli_server_009.phpt15 $host = PHP_CLI_SERVER_HOSTNAME;
20 Host: {$host}
36 Host: {$host}
52 Host: {$host}
H A Dphp_cli_server_008.phpt12 $host = PHP_CLI_SERVER_HOSTNAME;
17 Host: {$host}
33 Host: {$host}
/PHP-8.0/ext/standard/
H A Dnet.c109 zend_string *host; in iface_append_unicast() local
117 if ((host = php_inet_ntop(addr))) { in iface_append_unicast()
118 add_assoc_str(&u, "address", host); in iface_append_unicast()
121 if ((host = php_inet_ntop(netmask))) { in iface_append_unicast()
122 add_assoc_str(&u, "netmask", host); in iface_append_unicast()
125 if ((host = php_inet_ntop(broadcast))) { in iface_append_unicast()
126 add_assoc_str(&u, "broadcast", host); in iface_append_unicast()
129 if ((host = php_inet_ntop(ptp))) { in iface_append_unicast()
130 add_assoc_str(&u, "ptp", host); in iface_append_unicast()

Completed in 49 milliseconds

12345678910>>...25