Home
last modified time | relevance | path

Searched refs:user (Results 76 – 100 of 844) sorted by relevance

12345678910>>...34

/PHP-8.0/ext/oci8/tests/
H A Dbug42134.phpt16 $c = oci_connect($user,$password,$dbase);
19 $c = oci_connect($user,$password);
32 $c = oci_new_connect($user,$password,$dbase);
35 $c = oci_new_connect($user,$password);
48 $c = oci_pconnect($user,$password,$dbase);
51 $c = oci_pconnect($user,$password);
H A Dpassword.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
17 "drop user testuser_pw cascade",
18 "create user testuser_pw identified by testuserpwd",
70 "drop user testuser_pw cascade"
H A Dpassword_2.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
17 "drop user testuser_pw2 cascade",
18 "create user testuser_pw2 identified by testuserpwd",
69 "drop user testuser_pw2 cascade"
/PHP-8.0/ext/ldap/tests/
H A Dldap_set_rebind_proc_basic.phpt14 global $user;
21 if (!ldap_bind($a, $user, $passwd)) {
26 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_unbind_variation.phpt14 global $user;
21 if (!ldap_bind($a, $user, $passwd)) {
26 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_bind_ext.phpt20 $result = ldap_bind_ext($link, $user, $passwd),
25 $result = ldap_bind_ext($link, $user, $passwd, [['oid' => LDAP_CONTROL_PASSWORDPOLICYREQUEST]]),
34 …$result = ldap_bind_ext($link, $user, "wrongPassword", [['oid' => LDAP_CONTROL_PASSWORDPOLICYREQUE…
39 …$result = ldap_bind_ext($link, "unexistingProperty=weirdValue,$user", $passwd, [['oid' => LDAP_CON…
/PHP-8.0/ext/reflection/tests/
H A DReflectionMethod_defaultArg.phpt24 Method [ <user> private method bar ] {
31 Method [ <user> private method bar ] {
38 Method [ <user> private method bar ] {
H A Dbug37964.phpt26 Class [ <user> class bar extends foo ] {
42 Method [ <user> private method foobar ] {
46 Method [ <user, inherits foo> protected method test3 ] {
/PHP-8.0/Zend/tests/
H A Dbug43200.phpt26 Class [ <user> class x extends c implements a, b ] {
42 Method [ <user, prototype b> public method foo ] {
46 Method [ <user, inherits c, prototype a> public method bar ] {
/PHP-8.0/ext/mysqli/tests/
H A Dbug36949.phpt16 global $user, $host, $passwd, $db, $port, $socket;
17 $this->mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket);
34 global $user, $host, $passwd, $db, $port, $socket;
35 $this->mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket);
53 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
H A Dbug33263.phpt14 public function __construct($host, $user, $passwd, $db, $port, $socket) {
16 parent::real_connect($host, $user, $passwd, $db, $port, $socket);
20 $mysql = new test($host, $user, $passwd, $db, $port, $socket);
H A Dconnect.inc13 $user = getenv("MYSQL_TEST_USER") ?: "root";
58 … function my_mysqli_connect($host, $user, $passwd, $db, $port, $socket, $enable_env_flags = true) {
64 if (!mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags))
67 $link = mysqli_connect($host, $user, $passwd, $db, $port, $socket);
78 …function my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags = 0, $en…
84 return mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket, $flags);
88 …public function __construct($host, $user, $passwd, $db, $port, $socket, $enable_env_flags = true) {
95 $this->real_connect($host, $user, $passwd, $db, $port, $socket, $flags);
97 parent::__construct($host, $user, $passwd, $db, $port, $socket);
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_report_wo_ps.phpt8 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
9 …die(sprintf("SKIP Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port…
10 $host, $user, $db, $port, $socket));
83 …if ($link = my_mysqli_connect($host, $user . 'unknown_really', $passwd . 'non_empty', $db, $port, …
84 …printf("[010] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, po…
85 $host, $user . 'unknown_really', $db, $port, $socket);
96 …if ($link = my_mysqli_real_connect($link, $host, $user . 'unknown_really', $passwd . 'non_empty', …
98 $host, $user . 'unknown_really', $db, $port, $socket);
115 Warning: mysqli_change_user(): (%d/%d): Access denied for user '%s'@'%s' (using password: %s) in %s…
120 [011] Access denied for user '%s'@'%s' (using password: YES)
[all …]
H A Dmysqli_pconn_kill.phpt18 if (!$plink = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
19 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
20 $host, $user, $db, $port, $socket);
70 if (!$plink = @my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
71 …printf("[011] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
72 $host, $user, $db, $port, $socket);
83 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
84 …printf("[013] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
85 $host, $user, $db, $port, $socket);
H A Dmysqli_dump_debug_info_oo.phpt15 if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
16 …annot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", …
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);
/PHP-8.0/ext/date/tests/
H A DDateTime_extends_basic2.phpt2 Test DateTime class inheritance : with user space __construct magic method
9 echo "*** Testing new DateTime() : with user space __construct magic method ***\n";
28 *** Testing new DateTime() : with user space __construct magic method ***
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options.phpt16 $user = PDO_MYSQL_TEST_USER;
20 $db = new PDO($dsn, $user, $pass, array($option => $value));
37 $user = PDO_MYSQL_TEST_USER;
72 if (NULL !== ($db = @new PDO($dsn, $user, $pass, 'wrong type')))
77 if (!is_object($db = new PDO($dsn, $user, $pass, array())))
81 if (is_object($db = new PDO($dsn, $user, $pass, array($invalid => true))))
84 $db = new PDO($dsn, $user, $pass);
95 $db = new PDO($dsn, $user, $pass, array(PDO::ATTR_AUTOCOMMIT => true));
99 $db = new PDO($dsn, $user, $pass, array(PDO::ATTR_AUTOCOMMIT => false));
114 $db = new PDO($dsn, $user, $pass, array(PDO::ATTR_EMULATE_PREPARES => true));
[all …]
/PHP-8.0/sapi/fpm/tests/
H A Dproc-user-ignored.phpt2 FPM: Process user setting ignored when FPM is not running as root
18 user = foo
31 "'user' directive is ignored when FPM is not running as root",
H A Dsocket-uds-numeric-ugid-nonroot.phpt21 user = {{USER}}
35 "'user' directive is ignored when FPM is not running as root",
44 $user = $pw ? $pw['name'] : 'UNKNOWN';
46 echo "{$st['uid']}/{$user},{$st['gid']}/{$group}\n";
/PHP-8.0/ext/curl/tests/
H A Dcurl_basic_005.phpt2 Test curl_opt() function with user agent
14 echo '*** Testing curl with user agent ***' . "\n";
30 *** Testing curl with user agent ***

Completed in 43 milliseconds

12345678910>>...34