Home
last modified time | relevance | path

Searched refs:link (Results 401 – 425 of 664) sorted by relevance

1...<<11121314151617181920>>...27

/PHP-7.2/ext/ldap/tests/
H A Dldap_set_option_basic.phpt12 $link = ldap_connect($host, $port);
15 var_dump(ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version));
16 ldap_get_option($link, LDAP_OPT_PROTOCOL_VERSION, $option);
H A Dldap_get_option_basic.phpt12 $link = ldap_connect($host, $port);
14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
17 ldap_get_option($link, LDAP_OPT_PROTOCOL_VERSION, $option),
H A Dldap_bind_variation.phpt13 $link = ldap_connect($host, $port);
14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
15 var_dump(ldap_bind($link, $user, $passwd));
H A Dldap_bind_basic.phpt13 $link = ldap_connect($host, $port);
14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
15 var_dump(ldap_bind($link));
H A Dldap_start_tls_basic.phpt13 $link = ldap_connect($host, $port);
14 ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
15 var_dump(ldap_start_tls($link));
H A Dldap_set_option_ciphersuite_basic.phpt10 $link = ldap_connect($host, $port);
12 $result = ldap_set_option($link, LDAP_OPT_X_TLS_CIPHER_SUITE, '3DES');
15 ldap_get_option($link, LDAP_OPT_X_TLS_CIPHER_SUITE, $optionval);
H A Dldap_get_option_error.phpt12 $link = ldap_connect($host, $port);
17 var_dump(ldap_get_option($link));
18 var_dump(ldap_get_option($link, LDAP_OPT_PROTOCOL_VERSION));
22 ldap_get_option($link, LDAP_OPT_PROTOCOL_VERSION, $option, "Additional data"),
/PHP-7.2/ext/mysqli/tests/
H A Dbug70949.phpt50 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
53 if (!mysqli_query($link, "DROP TABLE IF EXISTS bug70949"))
54 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
56 mysqli_close($link);
H A Dbug71863.phpt29 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
31 if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bug_71863"))
32 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
33 mysqli_close($link);
H A Dmysqli_connect_error.phpt14 $link = NULL;
17 if (!is_null($tmp = @mysqli_connect_error($link)))
20 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
27 mysqli_close($link);
29 …if ($link = @my_mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port,…
H A Dbug55653.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
18 if (!($stmt = $link->stmt_init()))
19 printf("[002] [%d] %s\n", $link->errno, $link->error);
H A Dmysqli_change_user_prepared_statements.phpt13 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
16 if (!$stmt = mysqli_prepare($link, "SELECT 'prepared statements should be released'"))
19 mysqli_change_user($link, $user, $passwd, $db);
29 mysqli_close($link);
H A Dmysqli_result_unclonable.phpt13 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
17 if (!($res = mysqli_query($link, "SELECT 'good' AS morning")))
18 printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_stmt_unclonable.phpt13 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
17 if (!$stmt = mysqli_stmt_init($link))
18 printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
H A Dbug55859.phpt12 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
15 var_dump(soundex(mysqli_stat($link)) === soundex($link->stat));
H A Dbug35103.phpt57 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
60 if (!mysqli_query($link, "DROP TABLE IF EXISTS test_bint") || !mysqli_query($link, "DROP TABLE IF E…
61 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
63 mysqli_close($link);
H A Dbug42548.phpt8 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
11 if (mysqli_get_server_version($link) <= 50000) {
12 die(sprintf('skip Needs MySQL 5.0+, found version %d.', mysqli_get_server_version($link)));
56 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
59 mysqli_query($link, "DROP PROCEDURE IF EXISTS p1");
61 mysqli_close($link);
H A Dmysqli_stmt_prepare.phpt20 $link = NULL;
25 if (!is_null($tmp = @mysqli_stmt_prepare($link)))
30 if (!$stmt = mysqli_stmt_init($link))
31 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
47 mysqli_close($link);
H A Dbug35517.phpt40 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
43 if (!mysqli_query($link, "DROP TABLE IF EXISTS temp"))
44 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
46 mysqli_close($link);
H A Dmysqli_fetch_lengths.phpt21 if (!is_null($tmp = @mysqli_fetch_lengths($link)))
25 if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id LIMIT 1")) {
26 printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
38 mysqli_close($link);
H A Dbug55582.phpt12 if (!($link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))) {
16 var_dump($link->real_query("SELECT 1"));
17 $res = $link->use_result();
24 $link->close();
H A Dmysqli_stmt_attr_set.phpt14 $link = NULL;
22 if (!is_null($tmp = @mysqli_stmt_attr_set($link, $link)))
25 if (!is_null($tmp = @mysqli_stmt_attr_set($link, $link, $link)))
43 $stmt = mysqli_stmt_init($link);
76 $stmt = mysqli_stmt_init($link);
92 $stmt = mysqli_stmt_init($link);
112 $stmt = mysqli_stmt_init($link);
147 $stmt = mysqli_stmt_init($link);
167 $stmt = mysqli_stmt_init($link);
179 $stmt = mysqli_stmt_init($link);
[all …]
H A Dmysqli_stmt_store_result.phpt14 $link = NULL;
19 if (!is_null($tmp = @mysqli_stmt_store_result($link)))
27 if (!$stmt = mysqli_stmt_init($link))
28 printf("[004] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
49 printf("[010] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
81 mysqli_close($link);
/PHP-7.2/ext/interbase/tests/
H A Dbug46543.phpt22 Warning: ibase_trans(): supplied resource is not a valid Firebird/InterBase link resource in %sbug4…
24 Warning: ibase_trans(): supplied resource is not a valid Firebird/InterBase link resource in %sbug4…
26 Warning: ibase_trans(): supplied resource is not a valid Firebird/InterBase link resource in %sbug4…
28 Warning: ibase_trans(): supplied resource is not a valid Firebird/InterBase link resource in %sbug4…
/PHP-7.2/ext/standard/tests/file/
H A Dfileinode_variation.phpt6 die('skip no link()/symlink() on Windows');
33 echo "-- Testing with links: hard link --\n";
34 link( $file1, $link1); // Creating an hard link
40 echo "-- Testing with links: soft link --\n";
41 symlink( $file2, $link2); // Creating a soft link
93 -- Testing with links: hard link --
96 -- Testing with links: soft link --

Completed in 31 milliseconds

1...<<11121314151617181920>>...27